0

如何创建在 /system 中运行命令的应用程序。我需要给出的命令是:udpxy -p 4022。这个命令将启动我在 /system 中的一个程序。

我不知道在创建应用程序时使用了哪些命令,哪些命令执行此命令。

如果有人可以提供帮助,我将不胜感激。

4

1 回答 1

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

于 2013-08-16T15:03:49.860 回答