StringWriter.write

Write a portion of a string.

@param str string to be written @param off Offset from which to start writing characters @param len Number of characters to write

@throws IndexOutOfBoundsException If {@code off} is negative, or {@code len} is negative, or {@code off + len} is negative or greater than the length of the given string

  1. void write(int c)
  2. void write(byte[] cbuf, int off, int len)
  3. void write(string str)
  4. void write(string str, int off, int len)
    class StringWriter
    override
    void
    write
    (
    string str
    ,
    int off
    ,
    int len
    )

Meta