All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.moznion.capture.output.stream.StderrCapturer Maven / Gradle / Ivy

package net.moznion.capture.output.stream;

import java.io.OutputStream;
import java.io.PrintStream;

/**
 * Capturer for STDERR.
 * 
 * @author moznion
 *
 */
public class StderrCapturer implements AutoCloseable {
  private final PrintStream originalStderr;

  /**
   * Capture STDERR after instantiating this.
   * 
   * 

   * ByteArrayOutputStream stderr = new ByteArrayOutputStream();
   * 
   * try (StderrCapturer capturer = new StderrCapturer(stderr)) {
   *   System.err.print("goodbye"); // <= don't print anything
   * } // turn back to original stderr at here
   * 
   * System.err.print(stderr.toString()); // <= print "goodbye" on stderr
   * 
* * @param alternativeStderr STDERR stream to capture. Captured STDERR contents can retrieve * through this variable. */ public StderrCapturer(OutputStream alternativeStderr) { originalStderr = System.err; System.setErr(new PrintStream(alternativeStderr)); } @Override public void close() { System.setErr(originalStderr); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy