使用进程

时间:2016-09-27 06:39:59

标签: java eclipse eclipse-plugin

我想在我的eclipse插件应用程序中调用一个jar文件,代码就像

Process proc;
        try {
            proc = Runtime.getRuntime().exec("java -jar Bunch-3.5.jar");
            proc.waitFor();
            // Then retrive the process output
            InputStream in = proc.getInputStream();
            InputStream err = proc.getErrorStream();

        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

它可以在普通的Java应用程序中运行,但不能在插件应用程序中运行。 没有错误,似乎已经执行,但没有响应

1 个答案:

答案 0 :(得分:0)

如果您在Linux中运行,则需要指定shell:

proc = Runtime.getRuntime().exec("/bin/sh -c 'java -jar Bunch-3.5.jar'");