Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Uses of Class
java.io.OutputStream
Packages that use OutputStream
Provides for system input and output through data streams, serialization and the file system.
Provides classes that are fundamental to the design of the Java programming language.
Contains the collections framework, some internationalization support classes, a service loader, properties, random number generation, string parsing and scanning classes, base64 encoding and decoding, a bit array, and several miscellaneous utility classes.
Subclasses of OutputStream in java.io
class
The class implements a buffered output stream.
class
This class implements an output stream in which the data is written into a byte array.
class
A data output stream lets an application write primitive Java data types to an output stream in a portable way.
class
A file output stream is an output stream for writing data to a File or to a FileDescriptor.
class
This class is the superclass of all classes that filter output streams.
class
An ObjectOutputStream writes primitive data types and graphs of Java objects to an OutputStream.
class
A piped output stream can be connected to a piped input stream to create a communications pipe.
class
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 that return OutputStream
OutputStream.nullOutputStream()
Returns a new OutputStream which discards all bytes.
Methods in java.io with parameters of type OutputStream
long
ByteArrayInputStream.transferTo(OutputStream out)
Reads all bytes from this input stream and writes the bytes to the given output stream in the order that they are read.
void
ByteArrayOutputStream.writeTo(OutputStream out)
Writes the complete contents of this ByteArrayOutputStream to the specified output stream argument, as if by calling the output stream's write method using out.write(buf, 0, count).
long
InputStream.transferTo(OutputStream out)
Reads all bytes from this input stream and writes the bytes to the given output stream in the order that they are read.
Constructors in java.io with parameters of type OutputStream
Creates a new buffered output stream to write data to the specified underlying output stream.
Creates a new buffered output stream to write data to the specified underlying output stream with the specified buffer size.
Creates a new data output stream to write data to the specified underlying output stream.
Creates an output stream filter built on top of the specified underlying output stream.
Creates an ObjectOutputStream that writes to the specified OutputStream.
Creates an OutputStreamWriter that uses the default character encoding.
Creates an OutputStreamWriter that uses the given charset.
Creates an OutputStreamWriter that uses the given charset encoder.
Creates an OutputStreamWriter that uses the named charset.
Creates a new print stream, without automatic line flushing, with the specified OutputStream.
PrintStream(OutputStream out, boolean autoFlush)
Creates a new print stream, with the specified OutputStream and line flushing.
PrintStream(OutputStream out, boolean autoFlush, Charset charset)
Creates a new print stream, with the specified OutputStream, line flushing and charset.
PrintStream(OutputStream out, boolean autoFlush, String encoding)
Creates a new print stream, with the specified OutputStream, line flushing, and character encoding.
Creates a new PrintWriter, without automatic line flushing, from an existing OutputStream.
PrintWriter(OutputStream out, boolean autoFlush)
Creates a new PrintWriter from an existing OutputStream.
PrintWriter(OutputStream out, boolean autoFlush, Charset charset)
Creates a new PrintWriter from an existing OutputStream.
Methods in java.lang that return OutputStream
abstract OutputStream
Process.getOutputStream()
Returns the output stream connected to the normal input of the process.
Methods in java.util that return OutputStream
Base64.Encoder.wrap(OutputStream os)
Wraps an output stream for encoding byte data using the Base64 encoding scheme.
Methods in java.util with parameters of type OutputStream
Base64.Encoder.wrap(OutputStream os)
Wraps an output stream for encoding byte data using the Base64 encoding scheme.
void
Properties.save(OutputStream out, String comments)
Deprecated. This method does not throw an IOException if an I/O error occurs while saving the property list.
void
Properties.store(OutputStream out, String comments)
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(InputStream) method.
void
Properties.storeToXML(OutputStream os, String comment)
Emits an XML document representing all of the properties contained in this table.
void
Properties.storeToXML(OutputStream os, String comment, Charset charset)
Emits an XML document representing all of the properties contained in this table, using the specified encoding.
void
Properties.storeToXML(OutputStream os, String comment, String encoding)
Emits an XML document representing all of the properties contained in this table, using the specified encoding.
Constructors in java.util with parameters of type OutputStream
Constructs a new formatter with the specified output stream.
Constructs a new formatter with the specified output stream, charset, and locale.
Constructs a new formatter with the specified output stream and charset.
Constructs a new formatter with the specified output stream, charset, and locale.

 Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Java API documentation generated with FlexDoc/Javadoc 2.0 using JavadocClassic 3.0 template set.
FlexDoc/Javadoc is a template-driven programming tool for rapid development of any Javadoc-based Java API documentation generators (i.e. doclets). If you need to customize your Javadoc without writing a full-blown doclet from scratch, FlexDoc/Javadoc may be the only tool able to help you! Find out more at www.flexdoc.xyz