程序中的命令行 - 并非所有命令都执行问题

时间:2011-08-25 06:52:19

标签: android command-line

我编写了一些运行android命令行并收集输出的代码。

它正在正确执行“ls”但是当我把命令“top -n 1”时它没有显示任何内容。

这是一个明显的问题吗?手机没有root,当使用“终端模拟器”时,我可以看到“顶部”输出。

这是代码:

// ** execute command line and gather the output **//
    final StringBuilder log = new StringBuilder();
    try{
        ArrayList<String> commandLine = new ArrayList<String>();
        commandLine.add("top");
        commandLine.add("-n1");

        Process process = Runtime.getRuntime().exec(commandLine.toArray(new String[0]));

        BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(process.getInputStream()));

        String line;
        while ((line = bufferedReader.readLine()) != null){ 
            log.append(line);
            log.append(", \n"); 
        }
        log.append(", \n");
    } 
    catch (IOException e){

    } 

感谢, A.

1 个答案:

答案 0 :(得分:0)

您可能希望显示一些代码。通常,使用Runtime运行的命令不会在shell中执行,因此您可能希望尝试使用“sh -c top -n 1”作为prog参数。