gpt4 book ai didi

java - glass gdk 的文件权限

转载 作者:行者123 更新时间:2023-12-01 12:26:00 26 4
gpt4 key购买 nike

我可以在 Glass 的 DCIM 目录中创建一个 JSON 文件,但当我在 Glass 上访问该文件时,该文件不可见

这是代码:

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

我只能在 EclipseDDMS View 中访问该文件。

我添加了以下权限:

android.permission.WRITE_EXTERNAL_STORAGE

最佳答案

您可以使用DDMS查看它,这意味着文件已创建。我认为您的应用程序没有问题。

如果您想打开该文件,可以使用 adb 将文件从 Glass 中拉出:

adb pull /sdcard/DCIM/test/file.json

并使用您想要的任何应用程序查看它。

另请参阅http://developer.android.com/tools/help/adb.html

To copy a file or directory (and its sub-directories) from the emulator or device, use

    adb pull <remote> <local>

关于java - glass gdk 的文件权限,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26326272/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com