Android中将文件存储在SD卡上
我想在 SD 卡上存储一个文件。根据 Android 文档,SharedPreference 可以帮助检索原始数据类型的键值对。但是,它将文件存储在内部存储器中。
是否有一个类具有与 SharedPreference 类似的功能,但可以在 SD 卡上存储文件?
I would like to store a file on the SD card. According to the Android docs, SharedPreference
can help to retrieve key-value pairs of primitive data types. However, it stores files in the internal storage.
Is there a class with similar functionality to SharedPreference
but which can store a file on the SD card?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您首先需要检查 SD 卡是否可访问:
不要忘记在 Manifest.xml 中添加以下内容,
然后您可以使用如下内容:
You first need to check if the SD card is accessable with:
Do not forget to put below in your Manifest.xml
You can then use something like this: