可能重复:
如何在 Java 程序中运行 Java 源代码
我们小组希望在 java 程序/应用程序中运行 java 源代码,因为其中的语法没有错误。怎么会这样?我们还需要编译错误吗?还是编译不可避免?谢谢 ...
就像 netbeans 可以在下面运行它的代码一样。
可能重复:
如何在 Java 程序中运行 Java 源代码
我们小组希望在 java 程序/应用程序中运行 java 源代码,因为其中的语法没有错误。怎么会这样?我们还需要编译错误吗?还是编译不可避免?谢谢 ...
就像 netbeans 可以在下面运行它的代码一样。
以下是如何使用该Runtime
exec
方法从 java 代码运行 java(或其他外部)程序,以及如何读取命令的输出和执行期间可能出现的错误:
import java.io.*;
public class JavaRunCommand {
public static void main(String args[]) {
String s = null;
try {
// run the Unix "ps -ef" command
// using the Runtime exec method:
Process p = Runtime.getRuntime().exec("ps -ef");
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);
}
}
}