模拟器上的Environment.getExternalStorageDirectory()
我想在我的应用程序中读取图像并将其写入外部存储。根据我的阅读,以下是获取目录句柄的正确方法。
File externalStorageDir = Environment.getExternalStorageDirectory();
File picturesDir = new File(externalStorageDir, "Pictures");
但是...
picturesDir.exists(); // == null
picturesDir.mkdir(); // == false
这是因为我使用的是模拟器吗?
I want to read and write images to the external storage in my app. From what I read the following is the correct way to get a handle on the directory.
File externalStorageDir = Environment.getExternalStorageDirectory();
File picturesDir = new File(externalStorageDir, "Pictures");
However ...
picturesDir.exists(); // == null
picturesDir.mkdir(); // == false
Is this because I'm using the emulator?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要确保已启用外部存储:
在 Eclipse 中,转到 Window > Android SDK 和 AVD 管理器。选择适当的 AVD,然后单击编辑。
确保您已启用 SD 卡支持。如果不这样做,请单击“新建”按钮并选择“SD 卡支持”选项。
编辑:还需要添加
到清单中。
You might want to make sure you have external storage enabled:
In Eclipse, go to Window > Android SDK and AVD Manager. Select the appropriate AVD and then click Edit.
Make sure you have SD card support enabled. If you do not, click the "New" button and select the "SD Card Support" option.
EDIT: Also need to add
to the manifest.
默认情况下,模拟器将在没有 SD 卡的情况下启动。
您应该首先在控制台中使用
mksdcard
命令创建 SD 卡映像。请参阅 SDK 文档:https://developer.android.com/studio/command-line /mksdcard.html
因此,在控制台中,键入命令以使用该 sd 卡启动模拟器:
为了获得更好的性能,我强烈建议您通过真实设备调试应用程序。
By default, the emulator will be launched without a sd card.
You should create a sd card image first by using the
mksdcard
command in console.See SDK document:https://developer.android.com/studio/command-line/mksdcard.html
Hence, in the console, type the command to launch an emulator with that sd card:
For better performance, I strongly suggest you debug your app via a real device.