如何创建在/ system中运行命令的应用程序。 我需要提供的命令是:udpxy -p 4022。 该命令将启动我在/ system中的程序。
我不知道在创建执行此命令的应用程序时使用了哪些命令。
如果有人可以提供帮助,我将非常感激。
答案 0 :(得分:0)
try {
Process process = Runtime.getRuntime().exec("/system/udpxy -p 4022");
process.waitFor();
} catch (IOException e) {
throw new RuntimeException(e);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
http://developer.android.com/reference/android/os/Process.html