【发布时间】:2012-02-21 06:50:20
【问题描述】:
我指的是http://developer.android.com/guide/topics/data/data-storage.html#filesInternal 用于在内存中写入文件。我在哪里检查文件?以引导代码为例:
String FILENAME = "hello_file";
String string = "hello world!";
FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
fos.write(string.getBytes());
fos.close();
由于指南没有给出路径,我该去哪里检查文件 hello_file?
【问题讨论】: