5

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:/ $  

では、デバイスがルート化されているかどうかを確認するにはどうすればよいですか。

前もって感謝します。

4

1 に答える 1

5

私はこのクラスを使用します:

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");  
            }  
    }
于 2012-11-19T08:19:16.417 に答える