如何检查android设备是rooted设备?

时间:2012-11-19 06:24:41

标签: android adb

如何检查Android设备是否已植根?我使用以下代码:

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

当我在设备上运行时,我遇到了异常。

Causes by:Permission denied

但是在模拟器上运行不会给出任何异常。

我正在使用另一种方式来检查。在模拟器的命令行中输入adb shell返回#,但对于设备写入adb shell,会出现以下错误:

shell@android:/ $ su  
su   
/system/bin/sh: su: not found   
127|shell@android:/ $  

那么如何检查设备是否已植根。

先谢谢。

1 个答案:

答案 0 :(得分:4)

我使用这个类:

private void CheckRoot()
    {                    
        Process p;

        try {  
               // Preform su to get root privledges  
               p = Runtime.getRuntime().exec("su");   

               // Attempt to write a file to a root-only  
               DataOutputStream os = new DataOutputStream(p.getOutputStream());  
               os.writeBytes("echo \"Do I have root?\" >/data/LandeRootCheck.txt\n");  

               // Close the terminal  
               os.writeBytes("exit\n");  
               os.flush();  
               try {  
                  p.waitFor();  
                       if (p.exitValue() == 0) {  
                          // TODO Code to run on success                         
                         this.IsRoot=true;
                       }  
                       else {  
                           // TODO Code to run on unsuccessful  
                           this.IsRoot=false;  
                       }  
               } catch (InterruptedException e) {  
                  // TODO Code to run in interrupted exception  
                   toastMessage("not root");  
               }  
            } catch (IOException e) {  
               // TODO Code to run in input/output exception  
                toastMessage("not root");  
            }  
    }