Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

CDC 1.1.2

Uses of Class
java.io.OutputStream

Packages that use OutputStream
java.io Provides for system input and output through data streams, serialization and the file system. 
java.lang Provides classes that are fundamental to the design of the Java programming language. 
java.net Provides the classes for implementing networking applications. 
java.security Provides the classes and interfaces for the security framework. 
java.util Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array). 
java.util.jar Provides classes for reading and writing the JAR (Java ARchive) file format, which is based on the standard ZIP file format with an optional manifest file. 
javax.microedition.io Provides a simplified mechanism for applications to use various types of I/O protocols in resource-constrained environments. 
 

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 output 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
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
PrintWriter(OutputStream out)
          Create a new PrintWriter, without automatic line flushing, from an existing OutputStream.
PrintWriter(OutputStream out, boolean autoFlush)
          Create a new PrintWriter from an existing OutputStream.
PrintStream(OutputStream out)
          Create a new print stream.
PrintStream(OutputStream out, boolean autoFlush)
          Create a new print stream.
PrintStream(OutputStream out, boolean autoFlush, String encoding)
          Create a new print stream.
ObjectOutputStream(OutputStream out)
          Creates an ObjectOutputStream that writes to the specified OutputStream.
OutputStreamWriter(OutputStream out, String enc)
          Create an OutputStreamWriter that uses the named character encoding.
OutputStreamWriter(OutputStream out)
          Create an OutputStreamWriter that uses the default character encoding.
FilterOutputStream(OutputStream out)
          Creates an output stream filter built on top of the specified underlying output stream.
DataOutputStream(OutputStream out)
          Creates a new data output stream to write data to the specified underlying output stream.
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(OutputStream out, int size)
          Creates a new buffered output stream to write data to the specified underlying output stream with the specified buffer size.
 

Uses of OutputStream in java.lang
 

Methods in java.lang that return OutputStream
abstract  OutputStream Process.getOutputStream()
          Gets the output stream of the subprocess.
 

Uses of OutputStream in java.net
 

Methods in java.net that return OutputStream
 OutputStream URLConnection.getOutputStream()
          Returns an output stream that writes to this connection.
 

Uses of OutputStream in java.security
 

Subclasses of OutputStream in java.security
 class DigestOutputStream
          A transparent stream that updates the associated message digest using the bits going through the stream.
 

Constructors in java.security with parameters of type OutputStream
DigestOutputStream(OutputStream stream, MessageDigest digest)
          Creates a digest output stream, using the specified output stream and message digest.
 

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 the Java 2 platform v1.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.
 

Uses of OutputStream in java.util.jar
 

Methods in java.util.jar with parameters of type OutputStream
 void Manifest.write(OutputStream out)
          Writes the Manifest to the specified OutputStream.
 

Uses of OutputStream in javax.microedition.io
 

Methods in javax.microedition.io that return OutputStream
 OutputStream OutputConnection.openOutputStream()
          Open and return an output stream for a connection.
static OutputStream Connector.openOutputStream(String name)
          Create and open a connection output stream.
 


CDC 1.1.2

Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 218 specification.