(int c)
| 126 | } |
| 127 | |
| 128 | public void write(int c) throws IOException { |
| 129 | out.write(c); |
| 130 | if (autoFlush && c == '\n') flush(); |
| 131 | } |
| 132 | |
| 133 | public void write(byte[] buffer, int offset, int length) throws IOException { |
| 134 | out.write(buffer, offset, length); |