Android使用超级用户权限?允许访问

时间:2010-09-06 18:17:01

标签: android

我试图找到在Android设备上拥有超级用户访问权限的方法。基本上我希望我的应用程序能够删除系统文件,因此在大多数其他应用程序启动应用程序之后询问用户是否可以,然后我想用什么代码来执行这些操作?无法在谷歌找到很多

提前感谢!

3 个答案:

答案 0 :(得分:10)

如果设备是root用户,则可以使用以下代码访问root shell:

    try
    {
        Process process = Runtime.getRuntime().exec("su");
        DataOutputStream outputStream = new DataOutputStream(process.getOutputStream()); 
        DataInputStream inputStream = new DataInputStream(process.getInputStream());

        outputStream.writeBytes(command + "\n");
        outputStream.flush();

        outputStream.writeBytes("exit\n"); 
        outputStream.flush(); 
        process.waitFor();
    }
    catch (IOException e)
    {
        throw new Exception(e);
    }
    catch (InterruptedException e)
    {
        throw new Exception(e);
    }

其中“command”是您要执行的命令。

答案 1 :(得分:1)

如果我做得对,您想要授予您的应用程序root权限。对于安装在设备上的标准Android映像,这是不可能的。 su命令不支持更改为root。

然而,你可以在你的设备上加载一个自定义的root用户ROM,我担心没有解决方案。

答案 2 :(得分:1)

Here您可以找到有关如何获得root权限的清晰说明