Android:如何指定写入文件的位置
我想将此代码创建的文件存储在我的 sdcard 中的某个位置(即 sdcard/myfiles/file/)
final String TESTSTRING = new String("Hello Android");
FileOutputStream fOut = openFileOutput("samplefile.txt", MODE_WORLD_READABLE);
OutputStreamWriter osw = new OutputStreamWriter(fOut);
osw.write(TESTSTRING);
osw.flush();
osw.close();
我是 java 和 android 开发新手,非常感谢您的帮助! :)
I want to store the created file of this code somewhere in my sdcard (i.e. sdcard/myfiles/file/)
final String TESTSTRING = new String("Hello Android");
FileOutputStream fOut = openFileOutput("samplefile.txt", MODE_WORLD_READABLE);
OutputStreamWriter osw = new OutputStreamWriter(fOut);
osw.write(TESTSTRING);
osw.flush();
osw.close();
I'm new to java and android dev, many thanks for any help! :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用以下代码在SDCard中写入文件
Environment.getExternalStorageDirectory()
类返回您的sdcard的路径。Use following code to write file in SDCard
Environment.getExternalStorageDirectory()
class returns the path of your sdcard.使用以下代码...
Use the following code ...