Package java.io
Interface ObjectOutput
abstract void write(byte[] buf)
Throws:
abstract 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 an array of bytes. This method will block until the bytes are actually written.
write(byte[] buf, int offset, int len) method:
Writes len bytes from the byte array buf, starting at offset. This method will block until the bytes are actually written.
write(int b) method:
Writes one byte. This method will block until the byte is actually written.