0
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 中找到并打开这个文件?我想查看它的内容并手动编辑它。或者我可能想包含我自己的文件并阅读其内容。

4

1 回答 1

2

我的问题是,我在哪里可以在 Eclipse 中找到并打开这个文件?

使用 DDMS 透视图中的文件管理器,对于模拟器上的默认用户帐户,转到,在我拥有的清单中/data/data/your.application.id.goes.here/files替换为.packageyour.application.id.goes.here

于 2015-01-12T17:48:48.780 回答