我如何在android中使用外部存储
这是我第一次在 Android 中使用外部存储。 我需要一些帮助,如何执行不同的操作,例如如何检查外部存储是否可用?,如何将文件或图片写入存储。
This is for the first time i am using external storage in android.
I need some help how can i perform different operations such as how to check whether External Storage is available or not?, How to write files or pictures into storage .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了澄清 CommonsWare 答案的第一部分(我似乎无法在评论流中添加评论):你想检查……
是真的。
To clarify the first part of CommonsWare's answer (I couldn't seem to add a comment to the comment stream): you want to check that...
... is true.
使用Environment.getExternalStorageState()。
使用标准 Java I/O,处理使用
Environment.getExternalStorageDirectory()
构建的目录。Use
Environment.getExternalStorageState()
.Use standard Java I/O, working off a directory built using
Environment.getExternalStorageDirectory()
.