如何从 Android 应用程序运行 linux 命令并读取输出。例如:检索“ls -lh”的输出并在 TextView 中打印为文本?
问问题
225 次
1 回答
3
尝试这个:
try{
Process process;
process = Runtime.getRuntime().exec("ls -lh");
BufferedReader in = new BufferedReader(new InputStreamReader(process.getInputStream()));
}
catch (InterruptedException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
将此in
帖子发布到您的 TextView 之后。
于 2013-07-25T23:06:05.600 回答