我指的是這個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,因爲指南沒有給出路徑?