|
Java Platform 1.2 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
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.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 | |
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 | |
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 | |
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 | |
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.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 | |
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.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 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. |
|
Java Platform 1.2 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |