我尝试在sdcard位置制作.zip文件,但我发现了这个错误。
java.io.FileNotFoundException:/storage/sdcard1/.sdf.zip:open failed:EACCES(Permission denied)
我知道我必须得到许可,我已经服用了。 我的重命名删除写入和生成文件夹功能正确工作但卡在ZIP文件中。 这是我的代码
try {
System.out.println("OutZipFilePath is = "+outZipPath);
fileoutObject = new FileOutputStream(outZipPath);
bufferOutObject = new BufferedOutputStream(fileoutObject);
zos = new ZipOutputStream(bufferOutObject);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
verifyStoragePermissions((Activity)cntxt);
}