Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果不存在,我需要创建一个目录。我在下面写了代码
File backupDir = new File("//test"); // if (!backupDir.exists()) backupDir.mkdirs();
我以前用过没有任何问题,但现在不行,我也没有错误!问题是什么?你有什么想法来解决这个问题吗?
提前致谢
你有什么想法来解决这个问题吗?
使用您可以写入的有效路径。编码路径不仅是//test一种奇怪的方式,而且您不能以这种方式在任何 Android 设备上从 Java 代码写入它。使用适当的方法(例如getFilesDir()或getExternalFilesDir())来查找您可以写信的地方。
//test
getFilesDir()
getExternalFilesDir()