gpt4 book ai didi

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

转载 作者:IT王子 更新时间:2023-10-29 00:43:11 24 4
gpt4 key购买 nike

我正在调用通过管道连接的命令行程序。所有这一切肯定适用于 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;
}

如果我正在调用一些cat 文件 | grep asd,我得到了预期的结果。但并非所有命令都能正常工作。例如:

cat /proc/cpuinfo | wc -l

或者这个:

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

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

最佳答案

管道(如重定向,或 >)是 shell 的一个功能,因此直接从 Java 执行是行不通的。您需要执行以下操作:

/bin/sh -c "your | piped | commands | here"

它使用在 -c(引号中)之后指定的命令行(包括管道)执行 shell 进程。

另请注意,您必须同时使用 stdoutstderr ,否则您生成的进程将阻塞等待您的进程使用输出(或错误)。更多信息 here .

关于Java exec() 不返回管道连接命令的预期结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2088917/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com