1. 程式人生 > >android 判斷app是否具有root許可權

android 判斷app是否具有root許可權


    應用判斷是否具有root許可權,只需要看能否在data分割槽建立檔案,如果能夠在data分割槽建立檔案,那麼應用具有root許可權


public static boolean upgradeRootPermission( ) {  
   Process process = null;  
   DataOutputStream os = null;  
   try {  

    Log.i("roottest", "try it");
    String cmd = "touch /data/roottest.txt";
       process = Runtime.getRuntime().exec("su"); //切換到root帳號  
       os = new DataOutputStream(process.getOutputStream());  
       os.writeBytes(cmd + "\n");  
       os.writeBytes("exit\n");  
       os.flush();  
       process.waitFor();  
   } catch (Exception e) {  
       return false;  
   } finally {  
       try {  
           if (os != null) {  
               os.close();  
           }  
           process.destroy();  
       } catch (Exception e) {  
       }  
   }  
   return true;  
}