我正在使用此代码创建新文件并在 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();
}