Java Platform 1.2
Beta 4

Uses of Class
java.io.OutputStream

Packages that use OutputStream
com.sun.image.codec.jpeg Provides classes for encoding and decoding JPEG images.  
com.sun.java.swing.text Provides classes and interfaces that deal with editable and noneditable text components.  
com.sun.java.swing.text.rtf Provides a class (RTFEditorKit) for creating Rich-Text-Format text editors.  
java.awt.color Provides classes for color spaces.  
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.rmi.server Provides classes and interfaces for supporting the server side of RMI. A group of classes are used by the stubs and skeletons generated by the rmic stub compiler.  
java.security Provides the classes and interfaces for the security framework.  
java.util Provides useful utilities for data structures, date, time, internationalization, events (root interfaces), a simple string tokenizer, a random-number generator, observers, properties and exceptions.  
java.util.jar Provides classes for creating and reading JAR files.  
java.util.zip Provides classes for computing checksums of data and for compressing and decompressing data using standard ZIP and GZIP formats.  
org.omg.CORBA.portable   
 

Uses of OutputStream in com.sun.image.codec.jpeg
 

Methods in com.sun.image.codec.jpeg that return OutputStream
 OutputStream JPEGImageEncoder.getOutputStream()
          Return the stream the Encoder is currenlt associated with.
 

Methods in com.sun.image.codec.jpeg with parameters of type OutputStream
static JPEGImageEncoder JPEGCodec.createJPEGEncoder(OutputStream dest)
          This creates an instance of a JPEGImageEncoder that can be used to encode image data as JPEG Data streams.
static JPEGImageEncoder JPEGCodec.createJPEGEncoder(OutputStream dest, JPEGEncodeParam jep)
          This creates an instance of a JPEGImageEncoder that can be used to encode image data as JPEG Data streams.
 

Uses of OutputStream in com.sun.java.swing.text
 

Methods in com.sun.java.swing.text with parameters of type OutputStream
abstract  void EditorKit.write(OutputStream out, Document doc, int pos, int len)
          Writes content from a document to the given stream in a format appropriate for this kind of content handler.
 void DefaultEditorKit.write(OutputStream out, Document doc, int pos, int len)
          Writes content from a document to the given stream in a format appropriate for this kind of content handler.
 

Uses of OutputStream in com.sun.java.swing.text.rtf
 

Methods in com.sun.java.swing.text.rtf with parameters of type OutputStream
 void RTFEditorKit.write(OutputStream out, Document doc, int pos, int len)
          Write content from a document to the given stream in a format appropriate for this kind of content handler.
 

Uses of OutputStream in java.awt.color
 

Methods in java.awt.color with parameters of type OutputStream
 void ICC_Profile.write(OutputStream s)
          Write this ICC_Profile to an OutputStream.
 

Uses of OutputStream in java.io
 

Subclasses of OutputStream in java.io
  BufferedOutputStream
          The class implements a buffered output stream.
  ByteArrayOutputStream
          This class implements an output stream in which the data is written into a byte array.
  DataOutputStream
          A data input stream lets an application write primitive Java data types to an output stream in a portable way.
  FileOutputStream
          A file output stream is an output stream for writing data to a File or to a FileDescriptor.
  FilterOutputStream
          This class is the superclass of all classes that filter output streams.
  ObjectOutputStream
          An ObjectOutputStream writes primitive data types and graphs of Java objects to an OutputStream.
  PipedOutputStream
          A piped output stream can be connected to a piped input stream to create a communications pipe.
  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
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.
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.net
 

Methods in java.net that return OutputStream
 OutputStream URLConnection.getOutputStream()
          Returns an output stream that writes to this connection.
 OutputStream Socket.getOutputStream()
          Returns an output stream for this socket.
protected abstract  OutputStream SocketImpl.getOutputStream()
          Returns an output stream for this socket.
 

Uses of OutputStream in java.rmi.server
 

Subclasses of OutputStream in java.rmi.server
  LogStream
          LogStream presents a mechanism for logging errors that are of possible interest to those monitoring the system.
 

Methods in java.rmi.server that return OutputStream
 OutputStream LogStream.getOutputStream()
          Return the current stream to which output from this log is sent.
 

Methods in java.rmi.server with parameters of type OutputStream
static void RemoteServer.setLog(OutputStream out)
          Log RMI calls to the output stream out.
 void LogStream.setOutputStream(OutputStream out)
          Set the stream to which output from this log is sent.
 

Uses of OutputStream in java.security
 

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

Methods in java.security with parameters of type OutputStream
abstract  void KeyStoreSpi.engineStore(OutputStream stream, char[] password)
          Stores this keystore to the given output stream, and protects its integrity with the given password.
 void KeyStore.store(OutputStream stream, char[] password)
          Stores this keystore to the given output stream, and protects its integrity with the given password.
 void Certificate.encode(OutputStream stream)
          Deprecated. Encodes the certificate to an output stream in a format that can be decoded by the decode method.
 

Constructors in java.security with parameters of type OutputStream
DigestOutputStream.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 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.
 

Uses of OutputStream in java.util.jar
 

Subclasses of OutputStream in java.util.jar
  JarOutputStream
          The JarOutputStream class is used to write the contents of a JAR file to any output stream.
 

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

Constructors in java.util.jar with parameters of type OutputStream
JarOutputStream.JarOutputStream(OutputStream out, Manifest man)
          Creates a new JarOutputStream with the specified Manifest.
JarOutputStream.JarOutputStream(OutputStream out)
          Creates a new JarOutputStream with no manifest.
 

Uses of OutputStream in java.util.zip
 

Subclasses of OutputStream in java.util.zip
  CheckedOutputStream
          An output stream that also maintains a checksum of the data being written.
  DeflaterOutputStream
          This class implements an output stream filter for compressing data in the "deflate" compression format.
  GZIPOutputStream
          This class implements a stream filter for writing compressed data in the GZIP file format.
  ZipOutputStream
          This class implements an output stream filter for writing files in the ZIP file format.
 

Constructors in java.util.zip with parameters of type OutputStream
DeflaterOutputStream.DeflaterOutputStream(OutputStream out, Deflater def, int size)
          Creates a new output stream with the specified compressor and buffer size.
DeflaterOutputStream.DeflaterOutputStream(OutputStream out, Deflater def)
          Creates a new output stream with the specified compressor and a default buffer size.
DeflaterOutputStream.DeflaterOutputStream(OutputStream out)
          Creates a new output stream with a defaul compressor and buffer size.
ZipOutputStream.ZipOutputStream(OutputStream out)
          Creates a new ZIP output stream.
CheckedOutputStream.CheckedOutputStream(OutputStream out, Checksum cksum)
          Creates an output stream with the specified Checksum.
GZIPOutputStream.GZIPOutputStream(OutputStream out, int size)
          Creates a new output stream with the specified buffer size.
GZIPOutputStream.GZIPOutputStream(OutputStream out)
          Creates a new output stream with a default buffer size.
 

Uses of OutputStream in org.omg.CORBA.portable
 

Subclasses of OutputStream in org.omg.CORBA.portable
  OutputStream
          OuputStream is the Java API for writing IDL types to CDR marshal streams.
 


Java Platform 1.2
Beta 4

Submit a bug or feature
Submit comments/suggestions about new javadoc look
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.
This documentation was generated with a post-Beta4 version of Javadoc.