我正在使用此代码创建新文件并在test.json文件中写入json对象但我无法创建文件。请发现错误并给出最佳结果 我还有一件事就是在清单文件中编写权限代码..
谢谢,
String fileName = "test";
File file = new File("/data/data/packagename/test.json");
file.createNewFile();
DataOutputStream fos = new DataOutputStream(openFileOutput(fileName , Context.MODE_PRIVATE));
if(file.exists()){
fos.write(jsString.getBytes());
fos.close();
}
答案 0 :(得分:0)
这不会落在C:/无论如何。最好是你的SD卡或其他文件夹,因为android是一个基于unix的系统。你应该小心你如何使用“斜杠”