I m试图读/篡改纸面。 我在真的电话上和在剪切片上的推器上都尝试这样做。 在这两种装置上,允许使用/mnt/sdcard/或/sdcard只是“d--”,我猜测,我可以读写。
我不得不从ec子中的“File view”中打开手脚,而且当我还尝试“adb 拉/mnt/sdcard/test.txt 测试”时,我也可以开口。 我拿不到遥远物体。
甲状腺 app的确允许“EPAITE_EXTERNAL_STORAGE”。
例如,我管理时所做的事;
try {
File root = Environment.getExternalStorageDirectory();
Log.e(TAG,root.getAbsolutePath());
File gpxfile = new File(root, "test.txt");
FileWriter gpxwriter = new FileWriter(gpxfile);
BufferedWriter out = new BufferedWriter(gpxwriter);
out.write("Hello world");
out.close();
} catch (IOException e) {
Log.e(TAG, "Could not write file " + e.getMessage());
}
I do not get an exception. Any ideas? This problem is killing me!