用代码获取最高权限首先手机得root,没有root请不要往下看。 首先是写一个静态方法 代码如下: public static boolean isRoot(String pkgCodePath) { Process process = null; DataOutputStream os = null; try { String cmd = "chmod 777 " + pkgCodePath; process = Runtime.getRuntime().exec("su"); // 切换到root帐号 os = new DataOutputStream(process.getOutputStream()); os.writeBytes(c...
[ 查看全文 ]