This abstract class is the superclass of all classes representing an output stream of bytes. An output stream accepts output bytes and sends them to some sink.

See java.io.OutputStream for full documentation

Hierarchy

Implements

Constructors

Methods

  • Closes this output stream and releases any system resources associated with this stream.

    Returns void

  • Flushes this output stream and forces any buffered output bytes to be written out.

    Returns void

  • Writes b.length bytes from the specified byte array to this output stream.

    Parameters

    Returns void

  • Writes len bytes from the specified byte array starting at offset off to this output stream.

    Parameters

    Returns void

  • Writes the specified byte to this output stream.

    Parameters

    • b: number

    Returns void

  • Returns a new OutputStream which discards all bytes.

    Returns OutputStream

Generated using TypeDoc