Uses of Class
java.io.OutputStream

Packages that use OutputStream
java.io   
java.lang   
java.util   
 

Uses of OutputStream in java.io
 

Subclasses of OutputStream in java.io
 class BufferedOutputStream
          The class implements a buffered output stream.
 class ByteArrayOutputStream
          This class implements an output stream in which the data is written into a byte array.
 class DataOutputStream
          A data input stream lets an application write primitive Java data types to an output stream in a portable way.
 class FileOutputStream
          A file output stream is an output stream for writing data to a File or to a FileDescriptor.
 class FilterOutputStream
          This class is the superclass of all classes that filter output streams.
 class ObjectOutputStream
          An ObjectOutputStream writes primitive data types and graphs of Java objects to an OutputStream.
 class PipedOutputStream
          A piped output stream can be connected to a piped input stream to create a communications pipe.
 class PrintStream
          A PrintStream adds functionality to another output stream, namely the ability to print representations of various data values conveniently.
 

Fields in java.io declared as OutputStream
private  OutputStream OutputStreamWriter.out
           
private  OutputStream ObjectOutputStream.out
           
protected  OutputStream FilterOutputStream.out
          The underlying output stream to be filtered.
 

Methods in java.io with parameters of type OutputStream
 void ByteArrayOutputStream.writeTo(OutputStream out)
          Writes the complete contents of this byte array output stream to the specified output stream argument, as if by calling the output stream's write method using out.write(buf, 0, count).
 

Constructors in java.io with parameters of type OutputStream
OutputStreamWriter.OutputStreamWriter(OutputStream out, String enc)
          Create an OutputStreamWriter that uses the named character encoding.
OutputStreamWriter.OutputStreamWriter(OutputStream out)
          Create an OutputStreamWriter that uses the default character encoding.
OutputStreamWriter.OutputStreamWriter(OutputStream out, sun.io.CharToByteConverter ctb)
          Create an OutputStreamWriter that uses the specified character-to-byte converter.
ObjectOutputStream.ObjectOutputStream(OutputStream out)
          Creates an ObjectOutputStream that writes to the specified OutputStream.
FilterOutputStream.FilterOutputStream(OutputStream out)
          Creates an output stream filter built on top of the specified underlying output stream.
DataOutputStream.DataOutputStream(OutputStream out)
          Creates a new data output stream to write data to the specified underlying output stream.
BufferedOutputStream.BufferedOutputStream(OutputStream out)
          Creates a new buffered output stream to write data to the specified underlying output stream with a default 512-byte buffer size.
BufferedOutputStream.BufferedOutputStream(OutputStream out, int size)
          Creates a new buffered output stream to write data to the specified underlying output stream with the specified buffer size.
PrintWriter.PrintWriter(OutputStream out)
          Create a new PrintWriter, without automatic line flushing, from an existing OutputStream.
PrintWriter.PrintWriter(OutputStream out, boolean autoFlush)
          Create a new PrintWriter from an existing OutputStream.
PrintStream.PrintStream(OutputStream out)
          Create a new print stream.
PrintStream.PrintStream(OutputStream out, boolean autoFlush)
          Create a new print stream.
 

Uses of OutputStream in java.lang
 

Methods in java.lang that return OutputStream
abstract  OutputStream Process.getOutputStream()
          Gets the output stream of the subprocess.
 OutputStream Runtime.getLocalizedOutputStream(OutputStream out)
          Deprecated. As of JDK 1.1, the preferred way to translate a Unicode character stream into a byte stream in the local encoding is via the OutputStreamWriter, BufferedWriter, and PrintWriter classes.
 

Methods in java.lang with parameters of type OutputStream
 OutputStream Runtime.getLocalizedOutputStream(OutputStream out)
          Deprecated. As of JDK 1.1, the preferred way to translate a Unicode character stream into a byte stream in the local encoding is via the OutputStreamWriter, BufferedWriter, and PrintWriter classes.
 

Uses of OutputStream in java.util
 

Methods in java.util with parameters of type OutputStream
 void Properties.save(OutputStream out, String header)
          Deprecated. This method does not throw an IOException if an I/O error occurs while saving the property list. As of JDK 1.2, the preferred way to save a properties list is via the store(OutputStream out, String header) method.
 void Properties.store(OutputStream out, String header)
          Writes this property list (key and element pairs) in this Properties table to the output stream in a format suitable for loading into a Properties table using the load method.