Writes the entire contents of the byte array buffer to this stream. This implementation writes the buffer to the target stream. @param buffer the buffer to be written. @throws IOException if an I/O error occurs while writing to this stream.
(byte buffer[])
| 99 | * if an I/O error occurs while writing to this stream. |
| 100 | */ |
| 101 | @Override |
| 102 | public void write(byte buffer[]) throws IOException { |
| 103 | write(buffer, 0, buffer.length); |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | * Writes {@code count} bytes from the byte array {@code buffer} starting at |