我可以在的DCIM目錄中創建JSON文件,但文件爲不可見當我在玻璃上訪問它時。使用glass gdk的文件權限
下面是代碼:
File jsonFile = new File(Environment.getExternalStorageDirectory()
+ File.separator + "DCIM/test/file.json");
//file address
String json = "{\"id\":1}";
//text to be written on the file
FileWriter fw = new FileWriter(jsonFile);
BufferedWriter bw = new BufferedWriter(fw);
bw.write(json);
bw.close();
fw.close();
//writing the file
我只能訪問文件中DDMS鑑於Eclipse中。
我已經添加了以下權限:
android.permission.WRITE_EXTERNAL_STORAGE
提示。使用新的文件(父,子)構造函數,因此不需要使用+ File.separator – Adam 2014-10-13 07:23:21
爲什麼要首先在數碼相機鏡像文件夾(DCIM)中創建JSON文件?聞起來就像你需要重新思考你的架構。 – straya 2014-10-13 11:42:04