Spec-Zone .ru
спецификации, руководства, описания, API
JavaTM 2 Platform
Std. Ed. v1.3.1

Uses of Class
java.io.OutputStream

Packages that use OutputStream
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. 
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. 
java.util.zip Provides classes for reading and writing the standard ZIP and GZIP file formats. 
javax.sound.midi Provides interfaces and classes for I/O, sequencing, and synthesis of MIDI (Musical Instrument Digital Interface) data. 
javax.sound.midi.spi Supplies interfaces for service providers to implement when offering new MIDI devices, MIDI file readers and writers, or sound bank readers. 
javax.sound.sampled Provides interfaces and classes for capture, processing, and playback of sampled audio data. 
javax.sound.sampled.spi Supplies abstract classes for service providers to subclass when offering new audio devices, sound file readers and writers, or audio format converters. 
javax.swing.text Provides classes and interfaces that deal with editable and noneditable text components. 
javax.swing.text.rtf Provides a class (RTFEditorKit) for creating Rich-Text-Format text editors. 
org.omg.CORBA.portable Provides a portability layer, that is, a set of ORB APIs that makes it possible for code generated by one vendor to run on another vendor's ORB. 
 

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
 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
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
FilterOutputStream(OutputStream out)
          Creates an output stream filter built on top of the specified underlying output stream.
PrintStream(OutputStream out)
          Create a new print stream.
PrintStream(OutputStream out, boolean autoFlush)
          Create a new print stream.
DataOutputStream(OutputStream out)
          Creates a new data output stream to write data to the specified underlying output stream.
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.
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.
ObjectOutputStream(OutputStream out)
          Creates an ObjectOutputStream that writes to the specified OutputStream.
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
 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.
abstract  OutputStream Process.getOutputStream()
          Gets the output stream of the subprocess.
 

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.
protected abstract  OutputStream SocketImpl.getOutputStream()
          Returns an output stream for this socket.
 OutputStream Socket.getOutputStream()
          Returns an output stream for this socket.
 

Uses of OutputStream in java.rmi.server
 

Subclasses of OutputStream in java.rmi.server
 class LogStream
          Deprecated. no replacement
 

Methods in java.rmi.server that return OutputStream
 OutputStream LogStream.getOutputStream()
          Deprecated. no replacement
 

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)
          Deprecated. no replacement
 

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.
 

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

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
 

Subclasses of OutputStream in java.util.jar
 class 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(OutputStream out, Manifest man)
          Creates a new JarOutputStream with the specified Manifest.
JarOutputStream(OutputStream out)
          Creates a new JarOutputStream with no manifest.
 

Uses of OutputStream in java.util.zip
 

Subclasses of OutputStream in java.util.zip
 class CheckedOutputStream
          An output stream that also maintains a checksum of the data being written.
 class DeflaterOutputStream
          This class implements an output stream filter for compressing data in the "deflate" compression format.
 class GZIPOutputStream
          This class implements a stream filter for writing compressed data in the GZIP file format.
 class 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(OutputStream out, Deflater def, int size)
          Creates a new output stream with the specified compressor and buffer size.
DeflaterOutputStream(OutputStream out, Deflater def)
          Creates a new output stream with the specified compressor and a default buffer size.
DeflaterOutputStream(OutputStream out)
          Creates a new output stream with a defaul compressor and buffer size.
ZipOutputStream(OutputStream out)
          Creates a new ZIP output stream.
GZIPOutputStream(OutputStream out, int size)
          Creates a new output stream with the specified buffer size.
GZIPOutputStream(OutputStream out)
          Creates a new output stream with a default buffer size.
CheckedOutputStream(OutputStream out, Checksum cksum)
          Creates an output stream with the specified Checksum.
 

Uses of OutputStream in javax.sound.midi
 

Methods in javax.sound.midi with parameters of type OutputStream
static int MidiSystem.write(Sequence in, int fileType, OutputStream out)
          Writes a stream of bytes representing a file of the MIDI file type indicated to the output stream provided.
 

Uses of OutputStream in javax.sound.midi.spi
 

Methods in javax.sound.midi.spi with parameters of type OutputStream
abstract  int MidiFileWriter.write(Sequence in, int fileType, OutputStream out)
          Writes a stream of bytes representing a MIDI file of the file type indicated to the output stream provided.
 

Uses of OutputStream in javax.sound.sampled
 

Methods in javax.sound.sampled with parameters of type OutputStream
static int AudioSystem.write(AudioInputStream stream, AudioFileFormat.Type fileType, OutputStream out)
          Writes a stream of bytes representing an audio file of the specified file type to the output stream provided.
 

Uses of OutputStream in javax.sound.sampled.spi
 

Methods in javax.sound.sampled.spi with parameters of type OutputStream
abstract  int AudioFileWriter.write(AudioInputStream stream, AudioFileFormat.Type fileType, OutputStream out)
          Writes a stream of bytes representing an audio file of the file type indicated to the output stream provided.
 

Uses of OutputStream in javax.swing.text
 

Methods in javax.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 javax.swing.text.rtf
 

Methods in javax.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 org.omg.CORBA.portable
 

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


JavaTM 2 Platform
Std. Ed. v1.3.1

Submit a bug or feature
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.

Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2001 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.

free hit counter