从另一个java程序运行java程序

时间:2013-03-05 08:19:55

标签: java runtime runtime.exec

我正在研究一个简单的java程序。它只是编译并执行另一个java程序。我正在使用Runtime.exec()函数进行编译和运行。编译没有问题。但是当它运行时,如果第二个程序需要输入来从键盘读取,我不能从主进程中提供它。我使用了getOutputStream()函数。但它无能为力。我会提供我的代码。

public class sam {  
    public static void main(String[] args) throws Exception {  
        try { 
             Process p = Runtime.getRuntime().exec("javac sam2.java");
             Process p2 = Runtime.getRuntime().exec("java sam2");
             BufferedReader in = new BufferedReader(  
                                new InputStreamReader(p2.getInputStream()));

             OutputStream out = p.getOutputStream();
             String line = null; 
             line = in.readLine();
             System.out.println(line);
             input=input+"\n";
             out.write(input.getBytes());
             p.wait(10000);
             out.flush();
        }catch (IOException e) {  
             e.printStackTrace();  
        }  
    }  
}  

这是我的主程序(sam.java)。

以下是sam2.java的代码

public class sam2 {  
public static void main(String[] args) throws Exception {  

    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    String str; 
    System.out.println("Enter the number..\n");
    str = br.readLine(); 
    System.out.println(Integer.parseInt(str));

    }  
}  

如果我的第二个程序只有打印语句,则没有问题。但是当我不得不从另一个人那里读到一些东西时,问题就出现了。

5 个答案:

答案 0 :(得分:21)

这有点奇怪,但你可以运行第二个程序而不需要它。只需调用其中的main方法即可。所以忘记运行时部分并执行此操作:

sam2.main(new String[0]);

当然,这种方式必须在编译时编译sam2

答案 1 :(得分:11)

需要允许每个流程运行并完成。您可以使用Process#waitFor来实现此目的。同样,您需要同时使用进程的任何输出。 waitFor将阻止,因此您需要使用Thread来读取输入(如果需要,可以将输出写入流程)

根据java / class文件的位置,您可能还需要指定一个起始文件夹,从该文件夹开始执行该过程。

使用ProcessBuilder

时,大部分内容都变得非常容易
import java.io.File;
import java.io.IOException;
import java.io.InputStream;

public class CompileAndRun {

    public static void main(String[] args) {
        new CompileAndRun();
    }

    public CompileAndRun() {
        try {
            int result = compile("compileandrun/HelloWorld.java");
            System.out.println("javac returned " + result);
            result = run("compileandrun.HelloWorld");
        } catch (IOException | InterruptedException ex) {
            ex.printStackTrace();
        }
    }

    public int run(String clazz) throws IOException, InterruptedException {        
        ProcessBuilder pb = new ProcessBuilder("java", clazz);
        pb.redirectError();
        pb.directory(new File("src"));
        Process p = pb.start();
        InputStreamConsumer consumer = new InputStreamConsumer(p.getInputStream());
        consumer.start();

        int result = p.waitFor();

        consumer.join();

        System.out.println(consumer.getOutput());

        return result;
    }

    public int compile(String file) throws IOException, InterruptedException {        
        ProcessBuilder pb = new ProcessBuilder("javac", file);
        pb.redirectError();
        pb.directory(new File("src"));
        Process p = pb.start();
        InputStreamConsumer consumer = new InputStreamConsumer(p.getInputStream());
        consumer.start();

        int result = p.waitFor();

        consumer.join();

        System.out.println(consumer.getOutput());

        return result;        
    }

    public class InputStreamConsumer extends Thread {

        private InputStream is;
        private IOException exp;
        private StringBuilder output;

        public InputStreamConsumer(InputStream is) {
            this.is = is;
        }

        @Override
        public void run() {
            int in = -1;
            output = new StringBuilder(64);
            try {
                while ((in = is.read()) != -1) {
                    output.append((char) in);
                }
            } catch (IOException ex) {
                ex.printStackTrace();
                exp = ex;
            }
        }

        public StringBuilder getOutput() {
            return output;
        }

        public IOException getException() {
            return exp;
        }
    }
}

现在显然,您应该检查流程的返回结果,并且可能会产生更好的与流程交互的机制,但这是基本的想法......

答案 2 :(得分:1)

你可以调用第二类的main方法。主要方法就像任何其他静态方法一样。

答案 3 :(得分:0)

这对我有用:

try {
    single.main(new String[0]);
} catch (Exception e) {
    JOptionPane.showMessageDialog(null, e);
}

答案 4 :(得分:0)

只需调用主类文件。例如,如果您的Java类文件名为xyz.java,则可以通过单击JButton在Java swing应用程序中调用并执行该代码,代码为

private void Btn_createdatabaseActionPerformed(java.awt.event.ActionEvent evt) {                                                   
       xyz.main(new String[0]);
}

就这样...