-1

可能重复:
如何在 Java 程序中运行 Java 源代码

我们小组希望在 java 程序/应用程序中运行 java 源代码,因为其中的语法没有错误。怎么会这样?我们还需要编译错误吗?还是编译不可避免?谢谢 ...

就像 netbeans 可以在下面运行它的代码一样。

4

2 回答 2

0

以下是如何使用该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);
        }
    }
}

更多详情:http ://alvinalexander.com/java/edu/pj/pj010016

于 2013-01-31T11:45:07.993 回答
0

你可以使用这个函数 java.lang.Runtime.exec(), link这里是另一个关于如何做的

于 2013-01-31T11:39:53.790 回答