最近,我写了一个应用程序并试图访问一些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();
有人可以提供帮助吗?