最近,我写了一个应用程序并尝试访问一些linux设备。但是,它需要root权限。我的机器正在运行 eng build bsp,所以 adb shell 已经植根(我猜..)。至少,我可以使用 adb shell 来访问 linux 设备。
我使用以下命令获取root权限,但失败了。
process = Runtime.getRuntime().exec("su");
os = new DataOutputStream(process.getOutputStream());
os.writeBytes(command + "\n");
os.writeBytes("exit\n");
os.flush();
有人可以帮忙吗?