How to make a java program to print both out.println() and err.println() statements?

后端 未结 3 1379
一整个雨季
一整个雨季 2020-12-06 11:09

I have written the java code below, which executes another java program named \"Newsworthy_RB\".

Newsworthy_RB.java contains both the System.out.printlln() and Syste

相关标签:
3条回答
  • 2020-12-06 11:29

    You need to pipe the output of both streams in a separate threads. Example code from here:

    Process p = Runtime.getRuntime().exec(cmd.array());
    copyInThread(p.getInputStream(), System.out);
    copyInThread(p.getErrorStream(), System.err);
    p.waitFor();
    return p.exitValue();
    
    private void copyInThread(final InputStream in, final OutputStream out) {
        new Thread() {
            public void run() {
                try {
                    while (true) {
                        int x = in.read();
                        if (x < 0) {
                            return;
                        }
                        if (out != null) {
                            out.write(x);
                        }
                    }
                } catch (Exception e) {
                    throw new RuntimeException(e);
                }
            }
        } .start();
    }
    
    0 讨论(0)
  • 2020-12-06 11:38

    There are two methods in the Process object: getErrorStream and getInputStream. Currently, your program is only listening to one. You'll want it to listen to both.

    0 讨论(0)
  • 2020-12-06 11:44

    First of all, the preferred way of starting external programs is through ProcessBuilder. It is even mentioned in the docs for Runtime:

    ProcessBuilder.start() is now the preferred way to start a process with a modified environment.

    In ProcessBuilder you have a very convenient method called redirectErrorStream:

    Sets this process builder's redirectErrorStream property.

    If this property is true, then any error output generated by subprocesses subsequently started by this object's start() method will be merged with the standard output, so that both can be read using the Process.getInputStream() method. This makes it easier to correlate error messages with the corresponding output. The initial value is false.

    A complete example of how to output both standard error and standard out:

    import java.io.*;
    
    public class Test {
        public static void main(String... args) throws IOException {
    
            ProcessBuilder pb =
                    new ProcessBuilder("java", "-cp", "yourClassPath", "HelloWorld");
    
            pb.redirectErrorStream(true);
            Process proc = pb.start();
    
            Reader reader = new InputStreamReader(proc.getInputStream());
            int ch;
            while ((ch = reader.read()) != -1)
                System.out.print((char) ch);
            reader.close();
        }
    }
    

    Response to your update: No, the code with

    while ((c = in1.read()) != -1 || (c = in2.read()) != -1)
    

    will not work, since read() is a blocking method and you only have one thread. Your only option is to use one thread per input-stream, or, (preferrably) merge the two input-streams into one, using ProcessBuilder.redirectErrorStream.

    0 讨论(0)
提交回复
热议问题