The write method of the ActiveXOutputStream Class contains the following signatures:
write(int b)
write(byte b[], int off, int len)
Writes a byte to the output stream.
public void write(int b) throws IOException;
b | The byte to write to the output stream. |
IOException if an I/O error occurs.
Writes a specified number of bytes from a byte array to the output stream, beginning with the byte at offset off in the array.
public void write(byte b[], int off, int len) throws IOException;
b | The bytes to write. |
off | The starting offset in the array. |
len | The number of bytes to write. |
IOException if an I/O error occurs.