- buffer
- the array containing characters to write.
- offset
- the start position in buffer for retrieving characters.
- count
- the maximum number of characters to write.
Type Reason Java.Lang.IndexOutOfBoundsException if offset or count , or if offset + count is greater than the size of buffer. Java.IO.IOException if this writer is closed or another I/O error occurs.
Writes count characters starting at offset in buffer to this writer. If count is greater than this writer's buffer, then the buffer is flushed and the characters are written directly to the target writer.