Constructors
Name | Description |
---|---|
OutputStream() |
Methods
Name | Description |
---|---|
close() | Closes this output stream and releases any system resources associated with this stream. |
flush() | Flushes this output stream and forces any buffered output bytes to be written out. |
write(byte[]) | Writes b.length bytes from the specified byte array to this output stream. |
write(byte[], int, int) | Writes len bytes from the specified byte array starting at offset off to this output stream. |
write(int) | Writes the specified byte to this output stream. |