Methods Summary |
---|
public void | close()Closes the stream. This method must be called
to release any resources associated with the
stream.
|
public void | flush()Flushes the stream. This will write any buffered
output bytes.
|
public void | write(int b)Writes a byte. This method will block until the byte is actually
written.
|
public void | write(byte[] b)Writes an array of bytes. This method will block until the bytes
are actually written.
|
public void | write(byte[] b, int off, int len)Writes a sub array of bytes.
|
public void | writeObject(java.lang.Object obj)Write an object to the underlying storage or stream. The
class that implements this interface defines how the object is
written.
|