我如何在android中使用外部存储

发布于 2024-09-16 15:17:07 字数 79 浏览 8 评论 0原文

这是我第一次在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

窗影残 2024-09-23 15:17:07

为了澄清 CommonsWare 答案的第一部分(我似乎无法在评论流中添加评论):你想检查……

Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED);

是真的。

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...

Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED);

... is true.

奶茶白久 2024-09-23 15:17:07

如何检查外部存储是否可用?

使用Environment.getExternalStorageState()。

如何将文件或图片写入存储

使用标准 Java I/O,处理使用 Environment.getExternalStorageDirectory() 构建的目录。

how to check whether External Storage is available or not?

Use Environment.getExternalStorageState().

How to write files or pictures into storage

Use standard Java I/O, working off a directory built using Environment.getExternalStorageDirectory().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文