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