如何将图像从 URL 传输到 SD 卡?
如何将从图像 URL 检索到的图像保存到 SD 卡?
How can I save an images to the SD card that I retrieve from the image's URL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将从图像 URL 检索到的图像保存到 SD 卡?
How can I save an images to the SD card that I retrieve from the image's URL?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
首先,您必须确保您的应用程序有权写入 SD 卡。为此,您需要在应用程序清单文件中添加使用权限写入外部存储。请参阅 设置 Android 权限
然后您可以将 URL 下载到文件在 SD 卡上。一个简单的方法是:
编辑:
将权限放入清单中
First you must make sure your application has permission to write to the sdcard. To do this you need to add the uses permission write external storage in your applications manifest file. See Setting Android Permissions
Then you can you can download the URL to a file on the sdcard. A simple way is:
EDIT :
Put permission in manifest
一个很好的例子可以在最新帖子中找到Android 开发者博客上:
An excellent example can be found in the latest post on Android developer's blog: