1

我想将字符串列表作为参数传递到批处理文件中,但它不起作用。谁能给我解决方案。我的代码是这样的:

Process pr = rt.exec(new String[] { "cmd", "/c", "D:/test.bat " + s1.get(i)});

但是当我直接触发命令而不使用批处理文件时,它可以工作。

Process pr = rt.exec(new String[] { "cmd", "/c", 
     "java -jar D:/clientApplication.jar " + s1.get(i)});

首选java中的示例示例。

提前致谢。

4

1 回答 1

1
new String[] { "cmd", "/c", "D:/test.bat ", s1.get(i)}
于 2013-01-18T11:59:03.850 回答