0

我有一个名为 pbp 的 perl 脚本,它将一个 html 文件作为参数,然后创建一个输出文件。这是我当前的代码。Infile 是较早从 JFile 选择器获得的。我没有收到任何错误,但 perl 脚本没有输出。

try {
            Process p = Runtime.getRuntime().exec(new String[] {"perl", "C:\\Users\\Roger\\Downloads\\The_Long-Awaited_Product_Specification_and_Sample_Files\\casey\\pbp", inFile.getAbsolutePath()});
            p.getInputStream().close();
            p.getOutputStream().close();
            p.getErrorStream().close();
            System.out.println(p.waitFor());
        } catch (IOException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        } catch (InterruptedException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }
4

1 回答 1

0

您不会直接获得每个脚本的输出。您需要使用以下代码捕获它:

BufferedReader stdInput = new BufferedReader(new 
     InputStreamReader(p.getInputStream()));


// read the output from the command
System.out.println("EXE OUTPUT");
while ((s = stdInput.readLine()) != null) {
    System.out.println(s);
}
于 2013-05-25T16:55:39.200 回答