模拟器上的Environment.getExternalStorageDirectory()

发布于 2024-12-06 19:34:59 字数 342 浏览 0 评论 0原文

我想在我的应用程序中读取图像并将其写入外部存储。根据我的阅读,以下是获取目录句柄的正确方法。

 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 技术交流群。

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

发布评论

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

评论(2

擦肩而过的背影 2024-12-13 19:34:59

您可能需要确保已启用外部存储:

在 Eclipse 中,转到 Window > Android SDK 和 AVD 管理器。选择适当的 AVD,然后单击编辑。

Window - Android SDK 和 AVD Manager

确保您已启用 SD 卡支持。如果不这样做,请单击“新建”按钮并选择“SD 卡支持”选项。

编辑屏幕

编辑:还需要添加

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

到清单中。

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.

Window - Android SDK and AVD Manager

Make sure you have SD card support enabled. If you do not, click the "New" button and select the "SD Card Support" option.

Edit screen

EDIT: Also need to add

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

to the manifest.

横笛休吹塞上声 2024-12-13 19:34:59

默认情况下,模拟器将在没有 SD 卡的情况下启动。
您应该首先在控制台中使用 mksdcard 命令创建 SD 卡映像。
请参阅 SDK 文档:https://developer.android.com/studio/command-line /mksdcard.html

因此,在控制台中,键入命令以使用该 sd 卡启动模拟器:

    emulator -avd <emulator name> -sdcard <sdcard image name>

为了获得更好的性能,我强烈建议您通过真实设备调试应用程序。

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:

    emulator -avd <emulator name> -sdcard <sdcard image name>

For better performance, I strongly suggest you debug your app via a real device.

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