小编典典

Java exec()不返回管道连接命令的预期结果

linux

我正在调用通过管道连接的命令行程序。所有这些肯定可以在Linux上运行。

我的方法:

protected String execCommand(String command) throws IOException {
    String line = null;
    if (command.length() > 0) {
        Process child = Runtime.getRuntime().exec(command);
        InputStream lsOut = child.getInputStream();
        InputStreamReader r = new InputStreamReader(lsOut);
        BufferedReader in = new BufferedReader(r);

        String readline = null;
        while ((readline = in.readLine()) != null) {
            line = line + readline;
        }
    }

    return line;
}

如果我打电话给 猫文件| grep asd,我得到了预期的结果。但是,并非所有命令都能正常工作。例如:

cat /proc/cpuinfo | wc -l

或这个:

cat /proc/cpuinfo | grep "model name" | head -n 1 | awk -F":" '{print substr($2, 2, length($2))}

该方法将返回null。我猜想这个问题取决于输出格式化命令,例如 headtailwc
等。我如何解决这个问题并获得输出的最终结果?


阅读 344

收藏
2020-06-03

共1个答案

小编典典

仍然没有找到使用Runtime.exec执行管道命令的正确解决方案,但是找到了一种解决方法。我只是写了这些脚本来分隔bash文件。然后Runtime.exec调用这些bash脚本并获得预期的结果。

2020-06-03