Writes text to a character-output stream, buffering characters so as to provide for the efficient writing of single characters, arrays, and strings.

See java.io.BufferedWriter for full documentation

Hierarchy

Constructors

Methods

  • Appends the specified string to this writer.

    Parameters

    • str: string
    • Optional start: number

      Start of substring in str to write

    • Optional end: number

      End of substring in str to write

    Returns Writer

  • Closes the stream, flushing it first.

    Returns void

  • Flushes the stream.

    Returns void

  • Writes a line separator.

    Returns void

  • Writes an array, or portion thereof, of characters.

    Parameters

    • str: string
    • Optional off: number

      Offset from which to start writing characters

    • Optional len: number

      Number of characters to write

    Returns void

Generated using TypeDoc