Class NullOutputStream

java.lang.Object
java.io.OutputStream
org.apache.commons.io.output.NullOutputStream
All Implemented Interfaces:
Closeable, Flushable, AutoCloseable

public class NullOutputStream extends OutputStream
Never writes data. Calls never go beyond this class.

This output stream has no destination (file/socket etc.) and all bytes written to it are ignored and lost.

  • Field Details

  • Constructor Details

    • NullOutputStream

      @Deprecated public NullOutputStream()
      Deprecated.
      Deprecated in favor of INSTANCE. TODO: Will be private in 3.0.
  • Method Details

    • write

      public void write(byte[] b) throws IOException
      Does nothing - output to /dev/null.
      Overrides:
      write in class OutputStream
      Parameters:
      b - The bytes to write
      Throws:
      IOException - never
    • write

      public void write(byte[] b, int off, int len)
      Does nothing - output to /dev/null.
      Overrides:
      write in class OutputStream
      Parameters:
      b - The bytes to write
      off - The start offset
      len - The number of bytes to write
    • write

      public void write(int b)
      Does nothing - output to /dev/null.
      Specified by:
      write in class OutputStream
      Parameters:
      b - The byte to write