无法在root的Android Marshmallow设备上运行exec(“su”),其他命令运行正常

时间:2016-09-17 02:24:37

标签: android root android-6.0-marshmallow

我已经解决了这些问题的所有可能答案,但没有一个对我有用。似乎Android已严密阻止在应用程序内运行shell命令,即使设备已植根。

我可以 su adb 完全运行命令,但我无法从应用程序本身运行它们。它失败并出现错误:

Error running exec(). Command: [su]  Working Directory: null Environment: null

我搜索过这些错误,这些解决方案适用于旧版Android,而不适用于Marshmallow。

我也尝试过 libsuperuser (SuperSu),但它在Marshmallow上也失败了。

我试过的其他事情就像,例如对于设备重启:

Process p = Runtime.getRuntime().exec("su");

Process proc = Runtime.getRuntime().exec(new String[] { "su", "-c", "reboot" });

PowerManager pm = (PowerManager)...

与其他操作相同。命令在 su 处失败。我无法从应用中发出 adb 命令。但是我可以通过adb shell从命令行完全完成。

Android在其网站上的示例也不起作用。

我读过关于禁用SELinux安全性并将其设置为许可模式的内容。但这也需要首先运行 su ,其中应用程序失败。

现在我完全迷失了,不知道接下来该做什么。我真的在寻找一个可行的解决方案,因为这个特定的项目需要应用程序与底层硬件进行交互。

4 个答案:

答案 0 :(得分:0)

您需要首先确保安装了busybox,因为这将安装最常用的shell命令列表,然后使用以下代码运行命令。

Runtime.getRuntime().exec("ls");

try {
    Process chmod = Runtime.getRuntime().exec("/system/bin/chmod 777 " +fileName);
    BufferedReader reader = new BufferedReader(new InputStreamReader(nfiq.getInputStream()));

    int read;
    char[] buffer = new char[4096];
    StringBuffer output = new StringBuffer();

    while ((read = reader.read(buffer)) > 0) {
        output.append(buffer, 0, read);
    }

    reader.close();
    chmod.waitFor();
    outputString =  output.toString();
} catch (IOException e) {
    throw new RuntimeException(e);
} catch (InterruptedException e) {
    throw new RuntimeException(e);
}

答案 1 :(得分:0)

试试这个

Process command = Runtime.getRuntime().exec("su");
DataOutputStream dos = new DataOutputStream(p.getOutputStream());
dos.writeBytes("-c reboot\n");
dos.writeBytes("exit\n");
dos.flush();
dos.close();
p.waitFor();

执行可能需要一些时间,所以你可能想在工作线程

上运行它

答案 2 :(得分:0)

在“Marshmallow”中没有任何阻止shell命令的东西。我在我的应用程序中使用它,所有命令都完美无缺。你还缺少一些东西。首先确认在“/ system / bin /”目录中存在所有文件。或者,请检查其他设备。

答案 3 :(得分:0)

尝试在您的shell命令的开头添加“ sh -c”。否则,您将收到有关空目录和环境的错误消息。

示例:sh -c su

希望有帮助。

大卫