在Runtime.getRuntime()。exec中带有2个可执行文件的空格

我有一条命令需要在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);

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

回答:

传递给命令的每个参数都应该是一个单独的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它,因为它更易于配置,并且不需要您在其中包装一些命令。"\"...\""

以上是 在Runtime.getRuntime()。exec中带有2个可执行文件的空格 的全部内容, 来源链接: utcz.com/qa/401030.html

回到顶部