如何使管道与 Runtime.exec() 一起工作?
请考虑以下代码:
String commandf = "ls /etc | grep release";
try {
// Execute the command and wait for it to complete
Process child = Runtime.getRuntime().exec(commandf);
child.waitFor();
// Print the first 16 bytes of its output
InputStream i = child.getInputStream();
byte[] b = new byte[16];
i.read(b, 0, b.length);
System.out.println(new String(b));
} catch (IOException e) {
e.printStackTrace();
System.exit(-1);
}
该程序的输出为:
/etc:
adduser.co
当然,当我从shell运行时,它按预期工作:
poundifdef@parker:~/rabbit_test$ ls /etc | grep release
lsb-release
互联网告诉我,由于管道行为不是跨平台的,在Java工厂生产Java的聪明才智者无法保证管道工作。
我该怎么做?
我不会使用Java结构而不是和来完成所有解析,因为如果我想改变语言,我将被迫用该语言重写解析代码,这完全是行不通的。grep
sed
如何让 Java 在调用 shell 命令时执行管道和重定向?