项目中遇到的 setReadOnly方法返回false;
追踪源码显示
默认调用了 setWrigable(false, false);方法,也就是默认写死了参数 继续跟踪这个方法后
返回的是 chmod 命令来修改文件的属性,
这里是doChmod方法,debug是走进了catch 的异常里,返回的异常为
libcore.io.ErrnoException: chmod failed: EPERM (Operation not permitted)
提示是没有权限来操作,这就意味着,可能android默认APP的安装权限没有达到修改文件属性的级别,需要root。
public static boolean runRootCommand(String command) {//”command chmod 命令”
Process process = null;
DataOutputStream os = null;
try {
process = Runtime.getRuntime().exec(“su”);
os = new DataOutputStream(process.getOutputStream());
os.writeBytes(command+”\n”);
os.writeBytes(“exit\n”);
os.flush();
process.waitFor();
} catch (Exception e) {
Log.d(“* DEBUG *“, “Unexpected error - Here is what I know: “+e.getMessage());
return false;
}
finally {
try {
if (os != null) {
os.close();
}
process.destroy();
} catch (Exception e) {
// nothing
}
}
return true;
}
其中,参数就是所需要修改文件属性的 chmod 命令。