运行外部"java myprog < input.txt > output.txt"的 Java 程序



我想编写一个运行外部"java myprog output.txt"命令的Java程序。最终目标是在两个不同的程序上运行此命令,并比较它们各自输出文件的输出相似性。

我想我已经阅读了几乎所有关于使用 ProcessBuilder 运行外部程序的相关文章,以及关于在该外部程序中处理用户输入的少数条目,但我仍然无法让事情正常工作。从我所读到的内容来看,我认为最好的方法是不要运行上面的确切命令,而是读取输入.txt文件并将其逐字节输入 Process 对象,然后收集输出并将其写入输出.txt ...我对其他选择持100%开放的态度。

我根据我的读数将下面的代码放在一起。它似乎正确地将输入从输入.txt输入到 myprog 中,但是当我尝试将外部程序的输出打印到控制台进行验证时,程序在 myprog 中预期(令人惊讶)用户输入的位置挂起。

无论有没有重定向错误流(true)行,我都会遇到同样的问题。

我真的希望这是在Java中,因为我计划与我将比较其程序输出的人共享源代码,而且他们主要只熟悉Java。

import java.io.*;
import java.util.*;
public class test7 {
    public static void main(String args[]) {
        try {
            // WANT: "java myprog < input.txt > output.txt"
            String inputFile = "input.txt";
            String outputFile = "output.txt";
            ProcessBuilder pb = new ProcessBuilder("java","myprog");
            pb.redirectErrorStream(true); // merge stdout, stderr of process
            Process p = pb.start();
            // write input to the running program
            OutputStream pos = p.getOutputStream();
            InputStream fis = new FileInputStream(inputFile);
            int read = 0;
            while ( (read = fis.read()) != -1) {
                pos.write(read);
            }
            fis.close();
            // get output of running program
            InputStreamReader isr = new  InputStreamReader(p.getInputStream());
            BufferedReader br = new BufferedReader(isr);
            // HANGS HERE WHEN USER INPUT REQUIRED
            String lineRead;
            while ((lineRead = br.readLine()) != null) {
                System.out.println(lineRead);
            }
        }
        catch (IOException e) {
            e.printStackTrace(); 
        }
    } // end main
}

以下是myprog的内容.java:

import java.io.*;
public class myprog {
    public static void main(String args[]) throws IOException {
        System.out.println("Hello world!");
        System.out.println("Enter something:");
        BufferedReader cin = new BufferedReader(new InputStreamReader(System.in));
        // the readLine() command causes ProcessBuilder to hang
        cin.readLine();
    }   
}

而输入.txt文件只是

p

输出.txt文件应为

Hello world!
Enter something:

我想知道您的问题是否部分与不使用单独的线程来读取输入和写入输出有关。例如:

   public static void main(String args[]) {
      try {
         // WANT: "java myprog < input.txt > output.txt"
         String inputFile = "input.txt";
         String outputFile = "output.txt";
         // my ProcessBuilder Strings will be different from yours
         ProcessBuilder pb = new ProcessBuilder("java", "-cp", ".;bin;",
               "yr12.m04.a.MyProg");
         pb.redirectErrorStream(true); 
         Process p = pb.start();
         final OutputStream pos = p.getOutputStream();
         final PrintWriter pw = new PrintWriter(pos);
         final InputStream fis = new FileInputStream(inputFile);
         final BufferedReader fileBr = new BufferedReader(new InputStreamReader(fis));
         InputStreamReader isr = new InputStreamReader(p.getInputStream());
         final BufferedReader br = new BufferedReader(isr);
         new Thread(new Runnable() {
            public void run() {
               String lineRead;
               try {
                  while ((lineRead = br.readLine()) != null) {
                     System.out.println(lineRead);
                  }
               } catch (IOException e) {
                  e.printStackTrace();
               } finally {
                  if (br != null) {
                     try {
                        br.close();
                     } catch (IOException e) {
                        e.printStackTrace();
                     }
                  }
               }
            }
         }).start();
         new Thread(new Runnable() {
            public void run() {
               try {
                  String lineRead;
                  while ((lineRead = fileBr.readLine()) != null) {
                     pw.println(lineRead);
                  }
               } catch (IOException e) {
                  e.printStackTrace();
               } finally {
                  if (pw != null) {
                     pw.close();
                  }
                  if (fileBr != null) {
                     try {
                        fileBr.close();
                     } catch (IOException e) {
                        e.printStackTrace();
                     }
                  }
               }
            }
         }).start();
      } catch (IOException e) {
         e.printStackTrace();
      }
   } // end main

你有没有想过使用 Runtime.getRuntime().exec() ?

Process proc = Runtime.getRuntime().exec("java myprog "+inputFile+" "+outputFile);

你可以包含 'myprog' 的 jar 并自己调用 main() 方法。更重要的是,如果myprog在您的域中,则可以完全摆脱main方法。

相关内容

最新更新