我可以在 Nexus S 上使用 getExternalStorageDirectory() 引用位置吗?
我正在开发基于开源包的软件,该软件使用外部存储来存档数据。我想要一台 Nexus S 来帮助我开发这个软件,但刚刚注意到它没有 SD 卡插槽!
我看到其他一些没有 SD 插槽的 Android 手机只有 /mnt/sdcard 目录,就好像有外部存储一样,但其他手机显然不提供此功能。
那么 Nexus S 是否可以模拟外部存储?或者这款手机会破解我的密码吗...?
非常感谢!
I'm developing software based on an open source package that uses external storage to archive data. I wanted to get a Nexus S to help me develop this software, but just noticed that it doesn't have an SD card slot!
I've seen that some other Android phones without SD slots just have a /mnt/sdcard directory as though there were external storage, but others apparently don't offer this feature.
So does the Nexus S emulate external storage? Or will this phone break my code...?
Thanks very much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您不应该遇到任何问题:
来自
Environment.getExternalStorageDirectory()
文档。You should not get any problems:
From the
Environment.getExternalStorageDirectory()
documentation.到目前为止,我在使用 getExternalStorageDirectory() 的 Samsung Galaxy S 内部“SD”存储中的应用程序从未遇到过任何问题。这些手机是相同的,所以我相信您不会有任何问题。
So far i never experienced any problem with my apps at my Samsung Galaxy S internal "SD" like storage using the getExternalStorageDirectory(). The phones are identical so I believe you will not have any problems.
是的,我有 Nexus S,我可以确认这有效。
Yes, I have a Nexus S and I can confirm that this works.