内部存储文件位置
Internal storage files location
String filename = "myfile";
String string = "Hello world!";
FileOutputStream outputStream;
try {
outputStream = openFileOutput(filename, Context.MODE_PRIVATE);
outputStream.write(string.getBytes());
outputStream.close();
} catch (Exception e) {
e.printStackTrace();
}
好的,上面的代码在内部存储中创建了一个文件并向其中写入了一些东西。我的问题是,在 Eclipse 中哪里可以找到并打开这个文件?我想查看其内容并手动编辑它。或者我可能想要包含我自己的文件并阅读其内容。
My question is, where can I find and open this file in Eclipse?
在 DDMS 透视图中使用文件管理器,对于模拟器上的默认用户帐户,转到 /data/data/your.application.id.goes.here/files
,替换清单中的 package
我有 your.application.id.goes.here
.
String filename = "myfile";
String string = "Hello world!";
FileOutputStream outputStream;
try {
outputStream = openFileOutput(filename, Context.MODE_PRIVATE);
outputStream.write(string.getBytes());
outputStream.close();
} catch (Exception e) {
e.printStackTrace();
}
好的,上面的代码在内部存储中创建了一个文件并向其中写入了一些东西。我的问题是,在 Eclipse 中哪里可以找到并打开这个文件?我想查看其内容并手动编辑它。或者我可能想要包含我自己的文件并阅读其内容。
My question is, where can I find and open this file in Eclipse?
在 DDMS 透视图中使用文件管理器,对于模拟器上的默认用户帐户,转到 /data/data/your.application.id.goes.here/files
,替换清单中的 package
我有 your.application.id.goes.here
.