如何使管道与 Runtime.exec() 一起工作?

2022-08-31 09:12:29

请考虑以下代码:

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结构而不是和来完成所有解析,因为如果我想改变语言,我将被迫用该语言重写解析代码,这完全是行不通的。grepsed

如何让 Java 在调用 shell 命令时执行管道和重定向?


答案 1

编写一个脚本,并执行该脚本而不是单独的命令。

管道是 shell 的一部分,因此您也可以执行如下操作:

String[] cmd = {
"/bin/sh",
"-c",
"ls /etc | grep release"
};

Process p = Runtime.getRuntime().exec(cmd);

答案 2

我在Linux中遇到了类似的问题,除了它是“ps -ef |一些过程”。
至少对于“ls”,你有一个独立于语言(尽管速度较慢)的Java替换。例如:

File f = new File("C:\\");
String[] files = f.listFiles(new File("/home/tihamer"));
for (String file : files) {
    if (file.matches(.*some.*)) { System.out.println(file); }
}

使用“ps”,这有点难,因为Java似乎没有API。

我听说Sigar也许可以帮助我们:https://support.hyperic.com/display/SIGAR/Home

然而,最简单的解决方案(如 Kaj 所指出的)是将管道命令作为字符串数组执行。以下是完整代码:

try {
    String line;
    String[] cmd = { "/bin/sh", "-c", "ps -ef | grep export" };
    Process p = Runtime.getRuntime().exec(cmd);
    BufferedReader in =
            new BufferedReader(new InputStreamReader(p.getInputStream()));
    while ((line = in.readLine()) != null) {
        System.out.println(line); 
    }
    in.close();
} catch (Exception ex) {
    ex.printStackTrace();
}

至于为什么 String 数组与管道一起工作,而单个字符串则不...这是宇宙的奥秘之一(特别是如果你还没有读过源代码)。我怀疑这是因为当exec被赋予一个字符串时,它会首先解析它(以一种我们不喜欢的方式)。相反,当exec被赋予一个字符串数组时,它只是将其传递到操作系统而不解析它。

实际上,如果我们从繁忙的一天中抽出时间查看源代码(在 http://grepcode.com/file/repository.grepcode.com/java/root/jdk/openjdk/6-b14/java/lang/Runtime.java#Runtime.exec%28java.lang.String%2Cjava.lang.String[]%2Cjava.io.File%29),我们发现这正是正在发生的事情:

public Process  [More ...] exec(String command, String[] envp, File dir) 
          throws IOException {
    if (command.length() == 0)
        throw new IllegalArgumentException("Empty command");
    StringTokenizer st = new StringTokenizer(command);
    String[] cmdarray = new String[st.countTokens()];
    for (int i = 0; st.hasMoreTokens(); i++)
        cmdarray[i] = st.nextToken();
    return exec(cmdarray, envp, dir);
}

推荐