This method of the SystemOutputStream Class writes bytes to the output stream from an array, starting at a specified offset in the array.
public void write(byte b[], int off, int len) throws IOException;
b | The array to write from. |
off | The offset in the array, where the first byte to write is located. |
len | The number of bytes to write. |
IOException if an error occurs while attempting to write to the output stream.