我正在尝试使用Runtime.getrunTime()从另一个java程序运行java程序.exec
代码:
String java_home = System.getenv("JAVA_HOME");
String[] command = {""+java_home+"/bin/java -cp -cp /sc/sug/p-lib/* Tdesigner -cd /pr -in ing.rsp -out /scratch/sug/ng.pla -ad -stopO "};
try {
proc = Runtime.getRuntime().exec(command);
proc.waitFor();
int exitCode = proc.exitValue();
} catch (IOException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
它给了我以下错误:
java.io.IOException: Cannot run program "/net/sl/sc/jdk6/bin/java -cp /sc/sug/p-lib/* Tdesigner -cd /pr -in ing.rsp -out /scratch/sug/ng.pla -ad -stopOnError ": java.io.IOException: error=2, No such file or directory
at java.lang.ProcessBuilder.start(ProcessBuilder.java:460)
at java.lang.Runtime.exec(Runtime.java:593)
at java.lang.Runtime.exec(Runtime.java:466)
任何人都可以帮我解决问题。是否需要使用-cp添加单个jar文件而不是设置目录。
答案 0 :(得分:3)
尝试从命令字符串数组中删除额外的-cp
并使用数组中的单个标记:
String[] command = { java_home + "/bin/java", "-cp",
"/sc/sug/p-lib/*", "Tdesigner", "-cd", "/pr", "-in", "ing.rsp",
"-out", "/scratch/sug/ng.pla", "-ad", "-stopO" };
答案 1 :(得分:2)
如果你使用exec(String []),你必须在单独的数组元素中提供命令及其参数,而不是像你一样将它们全部放在一起。
答案 2 :(得分:0)
我使用scala。这是我的代码:
Runtime.getRuntime.exec(Array("/bin/bash", "-c", #your_command)).waitFor()
我认为使用java的其他人很容易理解。