13

我有一个命令需要在 java 中按照以下方式运行:

    C:\path\that has\spaces\plink -arg1 foo -arg2 bar "path/on/remote/machine/iperf -arg3 hello -arg4 world"

当路径没有空格时,这个命令可以正常工作,但是当我有空格时,我似乎无法让它工作。我尝试了以下方法,运行 Java 1.7

String[] a = "C:\path\that has\spaces\plink", "-arg1 foo", "-arg2 bar", "path/on/remote/machine/iperf -arg3 hello -arg4 world"
Runtime.getRuntime().exec(a);

String[] a = "C:\path\that has\spaces\plink", "-arg1 foo", "-arg2 bar", "path/on/remote/machine/iperf", "-arg3 hello", "-arg4 world"
Runtime.getRuntime().exec(a);

但似乎两者都没有做任何事情。关于我做错了什么的任何想法?

4

1 回答 1

21

您传递给命令的每个参数都应该是一个单独的 String 元素。

所以你的命令数组应该看起来更像......

String[] a = new String[] {
    "C:\path\that has\spaces\plink",
    "-arg1",
    "foo", 
    "-arg2",
    "bar",
    "path/on/remote/machine/iperf -arg3 hello -arg4 world"};

现在,每个元素都将作为单独的元素出现在程序args变量中

我也非常鼓励您ProcessBuilder改用它,因为它更易于配置并且不需要您将某些命令包装在"\"...\""

于 2013-06-17T06:48:02.800 回答