获取root权限
程序员文章站
2022-05-10 09:41:26
...
很多程序员朋友都遇到过root的问题,或是自己root手机加强自己的控制,或是工作需要,root权限都是挺头疼的一环。废话不多说,下面讲下获取root权限的方法。
基于android的开源性,很多厂商ROM自带了root权限,比如小米、魅族,这类手机在有账号的情况下可以直接申请root权限,ps:申请说明原因的时候,记得说明是开发者,解锁速度杠杠的。
不同于小米、魅族,打多数手机如三星、华为没有自带的root权限,这个就需要一种root工具了,亲测功能比较强大的是KingRoot,拿到权限后可以给与某些app root权限。
如果想写一个可以获取root权限的APP,你可能就要用到下述代码了。
private static final String[] BIN_DIR = new String[] { "/system/bin/",
"/system/xbin/", "/system/etc/", };
public static String makeRootCmd(String cmd) {
String result = "";
String su = "/system/xbin/su";
MyLogPrinter.sppebugError("===========su============" + su);
DataOutputStream dos = null;
BufferedReader dis = null;
try {
Process p = Runtime.getRuntime().exec("/system/xbin/su8");
dos = new DataOutputStream(p.getOutputStream());
dis = new BufferedReader(new InputStreamReader(p.getInputStream()));
dos.writeBytes(cmd + "\n");
dos.writeBytes("exit\n");
dos.flush();
String line = null;
while ((line = dis.readLine()) != null) {
result += line + "\n";
}
p.waitFor();
} catch (Exception e) {
Log.e(TAG, "", e);
} finally {
if (dos != null) {
try {
dos.close();
} catch (IOException e) {
Log.e(TAG, "", e);
}
}
if (dis != null) {
try {
dis.close();
} catch (IOException e) {
Log.e(TAG, "", e);
}
}
}
return result;
}
上述代码浅显易懂,这是一个直接执行root指令的方法,直接传入指令即可。自己写的帖子,不懂的可以留言,转载请标明出处