【问题标题】:External program call through java通过java调用外部程序
【发布时间】:2016-05-29 02:20:52
【问题描述】:

我想通过 java 运行 NS2(Linux 中的外部程序)命令,使用 ProcessBuilder 当我得到 ns command not found 错误

/home/maria/Documents/test.sh: line 4: ns: command not found
Execution failed.
org.apache.commons.exec.ExecuteException: Process exited with an error: 127 (Exit value: 127)
at org.apache.commons.exec.DefaultExecutor.executeInternal(DefaultExecutor.java:404)
at org.apache.commons.exec.DefaultExecutor.execute(DefaultExecutor.java:166)
at org.apache.commons.exec.DefaultExecutor.execute(DefaultExecutor.java:153)
at test.opencmd.runScript(opencmd.java:18)
at test.opencmd.main(opencmd.java:30)

我的java代码是

package test;
import java.io.*;
public class test2 {
public static void main(String args[]) {
String s = null;
try {
// run the Unix "};
    //System.out.print(System.getProperty("user.home"));
    Process p = Runtime.getRuntime().exec( "ns /home/maria/ns-allinone-2.35/ns-2.35/indep-utils/cmu-scen-gen && cbrgen.tcl -type cbr -nn 10 -seed 1 -mc 5 -rate 5.0");
BufferedReader stdInput = new BufferedReader(new
InputStreamReader(p.getInputStream()));
BufferedReader stdError = new BufferedReader(new
InputStreamReader(p.getErrorStream()));
// read the output from the command
System.out.println("Here is the standard output of the command:\n");
while ((s = stdInput.readLine()) != null) {
System.out.println(s);
}
// read any errors from the attempted command
System.out.println("Here is the standard error of the command (if any):\n");
while ((s = stdError.readLine()) != null) {
System.out.println(s);
}
System.exit(0);
}
catch (IOException e) {
System.out.println("exception happened - here's what I know: ");
e.printStackTrace();
System.exit(-1);
}
}
}

我想我没有进行正确的程序调用。

【问题讨论】:

  • 你可以尝试在启动时将完整路径放入ns命令吗?
  • 请在 linux 终端中尝试相同的命令。并检查它是否会工作
  • 它在终端中工作。但是在java中给出错误

标签: java linux ns2


【解决方案1】:

我猜 jvm 执行您的命令的终端/会话不知道“ns”在哪里/是什么 [即:您的可执行库]

尝试通过提供库的完整路径来执行,例如

Process p = Runtime.getRuntime().exec( "/fullpath/ns /home/maria/ns-allinone-2.35/ns-....

【讨论】:

  • 我想这一定是解决方案。
  • 现在的问题是语法。我如何将路径传递给库和命令以在 .exec() 函数中运行?
【解决方案2】:

如果NS 是Java 程序,则使用java ns,如下所示。

Runtime.getRuntime().exec( "java ns /home/maria/ns-allinone-2.35/ns-2.35/indep-utils/cmu-scen-gen && cbrgen.tcl -type cbr -nn 10 -seed 1 -mc 5 -rate 5.0");

【讨论】:

  • 谢谢。 NS 不是 java 程序
【解决方案3】:

Java 无法找到“ns”。要告诉 Java 程序,您必须提及以下完整路径:

Process p = Runtime.getRuntime().exec("/home/maria/ns-allinone-2.35/ns-2.35/indep-utils/cmu-scen-gen/setdest/setdest -v 2 -n 50 -p 2.0 -s 10.0 -t 200 -x 500 -y 500 -m 2 -M 15");
Process p = Runtime.getRuntime().exec("/home/maria/ns-allinone-2.35/bin/ns /home/maria/ns-allinone-2.35/ns-2.35/indep-utils/cmu-scen-gen/cbrgen.tcl -type cbr -nn 10 -seed 1 -mc 5 -rate 5.0");

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2012-02-03
    • 2014-09-12
    • 1970-01-01
    • 1970-01-01
    • 2021-08-23
    • 1970-01-01
    • 1970-01-01
    • 2011-09-14
    相关资源
    最近更新 更多