Writes the entire character buffer buf to the target. @param buf the non-null array containing characters to write. @throws IOException if this writer is closed or another I/O error occurs.
(char buf[])
| 95 | * if this writer is closed or another I/O error occurs. |
| 96 | */ |
| 97 | public void write(char buf[]) throws IOException { |
| 98 | write(buf, 0, buf.length); |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Writes {@code count} characters starting at {@code offset} in {@code buf} |