android執行外部操作命令

野生奧特曼x1發表於2012-09-05

android手機是基於Linux核心開發的。在手機root後最大的好處就是開發者可以研究手機內部情況和開發自己喜歡的外掛應用。

有時候在開發過程中會要求對手機核心檔案進行訪問或做其他操作,若沒有現成的API介面就需要

靠用Linux指令來操作。下面的程式碼就是應用程式執行手機外部命令的方法:

public static int exce(String... strings) { try { Process process = Runtime.getRuntime().exec(strings); int waitFor = process.waitFor(); return waitFor; } catch (IOException e) { throw new RuntimeException(e); } catch (InterruptedException e) { throw new RuntimeException(e); } }



相關文章