| BufferedOutputStream |
BufferedOutputStream is a class which takes an output stream and
buffers the writes to that stream. |
| BufferedWriter |
BufferedWriter is for writing buffered character output. |
| ByteArrayOutputStream |
ByteArrayOutputStream is a class whose underlying stream is represented by a
byte array. |
| CharArrayWriter |
CharArrayWriter is used as a character output stream on a character array. |
| CheckedOutputStream |
The CheckedOutputStream class is used to maintain a running Checksum of all
data written to a stream. |
| ChunkedOutputStream |
Implements chunked transfer coding. |
| CipherOutputStream |
|
| ContentLengthOutputStream |
A stream wrapper that closes itself after a defined number of bytes. |
| DataOutputStream |
DataOutputStream is a filter class which can write typed data to a Stream. |
| DeflaterOutputStream |
The DeflaterOutputStream class implements a stream filter for the writing of
compressed data to a stream. |
| DigestOutputStream |
|
| FileOutputStream |
FileOutputStream is a class whose underlying stream is represented by a file
in the operating system. |
| FileWriter |
FileWriter is a class for writing characters out to a file. |
| FilterOutputStream |
FilteredOutputStream is a class which takes an output stream and
filters the output in some way. |
| FilterWriter |
FilterWriter is a class which takes a Writer and filters the
output in some way. |
| Formatter |
Formatter provides the method to give out formatted string just like the
printf-style. |
| GZIPOutputStream |
The GZIPOutputStream class is used to write data to a stream in the GZIP
storage format. |
| IdentityOutputStream |
A stream for writing with an "identity" transport encoding. |
| ImageOutputStreamWrapper |
|
| JarOutputStream |
The JarOutputStream is used to output data in JarFile format. |
| ObjectOutputStream |
An ObjectOutputStream can be used to save Java objects into a stream where
the objects can be loaded later with an ObjectInputStream. |
| OutputStream |
OutputStream is an abstract class for all byte output streams. |
| OutputStreamWriter |
OutputStreamWriter is a class for turning a character output stream into a
byte output stream. |
| ParcelFileDescriptor.AutoCloseOutputStream |
An OutputStream you can create on a ParcelFileDescriptor, which will
take care of calling ParcelFileDescritor.close() for you when the stream is closed. |
| PipedOutputStream |
PipedOutputStream is a class which places information on a communications
pipe. |
| PipedWriter |
PipedWriter is a class which places information on a communications pipe. |
| PrintStream |
PrintStream is a class which takes an OutputStream and provides convenience
methods for printing common data types in a human readable format on the
stream. |
| PrintWriter |
PrintWriter is a class which takes either an OutputStream or Writer and
provides convenience methods for printing common data types in a human
readable format on the stream. |
| StringWriter |
StringWriter is an class for writing Character Streams to a StringBuffer. |
| Writer |
Writer is an Abstract class for writing Character Streams. |
| ZipOutputStream |
ZipOutputStream is used to write ZipEntries to the underlying stream. |