| AssetFileDescriptor.AutoCloseOutputStream | An OutputStream you can create on a ParcelFileDescriptor, which will take care of calling ParcelFileDescritor.close()for you when the stream is closed. | 
 
              
              | Base64OutputStream | An OutputStream that does Base64 encoding on the data written to it, writing the resulting data to another OutputStream. | 
 
              
              | BufferedOutputStream | Wraps an existing OutputStreamand buffers the output. | 
 
              
              | BufferedWriter | Wraps an existing Writerand buffers the output. | 
 
              
              | ByteArrayOutputStream | A specialized OutputStreamfor class for writing content to an (internal) byte array. | 
 
              
              | CharArrayWriter | A specialized Writerfor class for writing content to an (internal) char array. | 
 
              
              | CheckedOutputStream | The CheckedOutputStreamclass is used to maintain a running checksum of all data written to a stream. | 
 
              
              | ChunkedOutputStream | Implements chunked transfer coding. | 
 
              
              | CipherOutputStream | This class wraps an output stream and a cipher so that writemethods send the data through the cipher before writing them to the underlying output stream. | 
 
              
              | Console | Provides access to the console, if available. | 
 
              
              | ContentLengthOutputStream | A stream wrapper that closes itself after a defined number of bytes. | 
 
              
              | DataOutputStream | Wraps an existing OutputStreamand writes big-endian typed data to it. | 
 
              
              | DeflaterOutputStream | This class provides an implementation of FilterOutputStreamthat compresses data using the DEFLATE algorithm. | 
 
              
              | DigestOutputStream | DigestOutputStreamis aFilterOutputStreamwhich maintains an associated message digest. | 
 
              
              | FileOutputStream | An output stream that writes bytes to a file. | 
 
              
              | FileWriter | A specialized Writerthat writes to a file in the file system. | 
 
              
              | FilterOutputStream | Wraps an existing OutputStreamand performs some transformation on the output data while it is being written. | 
 
              
              | FilterWriter | Wraps an existing Writerand performs some transformation on the output data while it is being written. | 
 
              
              | Formatter | Formats arguments according to a format string (like printfin C). | 
 
              
              | GZIPOutputStream | The GZIPOutputStreamclass is used to write data to a stream in the GZIP storage format. | 
 
              
              | IdentityOutputStream | A stream for writing with an "identity" transport encoding. | 
 
              
              | InflaterOutputStream | An OutputStreamfilter to decompress data. | 
 
              
              | JarOutputStream | The JarOutputStreamis used to write data in theJarFileformat to an arbitrary output stream | 
 
              
              | ObjectOutputStream | A specialized OutputStreamthat is able to write (serialize) Java objects as well as primitive data types (int, byte, char etc.). | 
 
              
              | OutputStream | A writable sink for bytes. | 
 
              
              | OutputStreamWriter | A class for turning a character stream into a byte stream. | 
 
              
              | ParcelFileDescriptor.AutoCloseOutputStream | An OutputStream you can create on a ParcelFileDescriptor, which will take care of calling ParcelFileDescriptor.close()for you when the stream is closed. | 
 
              
              | PipedOutputStream | Places information on a communications pipe. | 
 
              
              | PipedWriter | Places information on a communications pipe. | 
 
              
              | PrintStream | Wraps an existing OutputStreamand provides convenience methods for writing common data types in a human readable format. | 
 
              
              | PrintWriter | Wraps either an existing OutputStreamor an existingWriterand provides convenience methods for printing common data types in a human readable format. | 
 
              
              | StringWriter | A specialized Writerthat writes characters to aStringBufferin a sequential manner, appending them in the process. | 
 
              
              | Writer | The base class for all writers. | 
 
              
              | ZipOutputStream | This class provides an implementation of FilterOutputStreamthat compresses data entries into a ZIP-archive output stream. |