Write an array of characters.
(char[] cbuf)
| 61 | * Write an array of characters. |
| 62 | */ |
| 63 | public void write(char[] cbuf) throws java.io.IOException{ |
| 64 | write(cbuf, 0, cbuf.length); |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Write a portion of an array of characters. |
no test coverage detected