我正在尝试从我的Android应用程序执行命令,以便通过代码配置我的设备的某些方面。 例如,我试图使用此代码锁定我的设备(来自扩展MainActivity类的类):
Process p=Runtime.getRuntime().exec("su");
DataOutputStream dos = new DataOutputStream(p.getOutputStream());
dos.writeBytes("adb shell input keyevent 26");
dos.writeBytes("exit\n");
dos.flush();
dos.close();
p.waitFor();
当我运行它时,我会收到:
java.io.Exception: Error running exec(). Command: [su] Working directory: null Environment: null
我的设备没有root。我已经尝试过其他方法来做到这一点,但一直没有成功。
有什么想法吗?
答案 0 :(得分:0)
答案 1 :(得分:0)
我多次得到null工作目录错误,这一直是我的命令的问题。试试这个:
Process proc = Runtime.getRuntime().exec(new String[] { "su", "-c", "input keyevent 26"});
proc.waitFor();
这至少应该解决“零环境”问题。错误。