java.io.OutputStream (abstract class)
Constructors:
OutputStream();
General Description: This is a general class for basic stream input.
Parent Class: Object
Methods
void close(); Close the channel.
void flush(); Flush written data from buffers.
void write(byte b); Write a single byte to the stream.
int write(byte[] arr); Write an array of bytes (arr) to stream.
int write(byte[] arr, int offset, int len); Write an array of bytes (arr) beginning at offset for len bytes.
Exceptions Thrown
IOException