Package java.io
Class OutputStream
void write(byte[] buf)
Throws:
void write(byte[] buf, int offset, int len)
Throws:
abstract void write(int b)
Throws:
_INSERT_METHOD_SIGNATURE_HERE_
Description:
write(byte[] buf) method:
Writes buf.length bytes from the specified buffer array to this output stream.
write(byte[] buf, int offset, int len) method:
Writes len bytes from the specified buffer array to this output stream, starting at offset.
write(int b) method:
Writes one byte to this output stream. The byte written consists of the eight lower bits of b. The 24 higher bits are ignored.
At least this method has to be implemented by a derived class.