| Package | Description | 
|---|---|
| java.awt.color | Provides classes for color spaces. | 
| java.beans | Contains classes related to developing
beans -- components
based on the JavaBeans™ architecture. | 
| 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.nio.channels | Defines channels, which represent connections to entities that are capable of
 performing I/O operations, such as files and sockets; defines selectors, for
 multiplexed, non-blocking I/O operations. | 
| java.nio.file | Defines interfaces and classes for the Java virtual machine to access files,
 file attributes, and file systems. | 
| java.nio.file.spi | Service-provider classes for the  java.nio.filepackage. | 
| 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.security.cert | Provides classes and interfaces for parsing and managing
 certificates, certificate revocation lists (CRLs), and
 certification paths. | 
| java.sql | Provides the API for accessing and processing data stored in a 
data source (usually a relational database) using the 
JavaTM programming language. | 
| 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.logging | 
Provides the classes and interfaces of 
the JavaTM 2
 platform's core logging facilities. | 
| java.util.prefs | This package allows applications to store and retrieve user and system
preference and configuration data. | 
| java.util.zip | Provides classes for reading and writing the standard ZIP and GZIP
file formats. | 
| javax.activation | |
| javax.crypto | Provides the classes and interfaces for cryptographic operations. | 
| javax.imageio | The main package of the Java Image I/O API. | 
| javax.imageio.stream | A package of the Java Image I/O API dealing with low-level I/O from
files and streams. | 
| javax.print | Provides the principal classes and interfaces for the 
JavaTM Print Service API. | 
| 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.sql.rowset | Standard interfaces and base classes for JDBC  RowSetimplementations. | 
| javax.sql.rowset.serial | Provides utility classes to allow serializable mappings between SQL types
and data types in the Java programming language. | 
| 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. | 
| javax.tools | Provides interfaces for tools which can be invoked from a program,
 for example, compilers. | 
| javax.xml.bind | 
        Provides a runtime binding framework for client applications including
        unmarshalling, marshalling, and validation capabilities. | 
| javax.xml.bind.helpers | 
        JAXB Provider Use Only: Provides partial default implementations for 
        some of the javax.xml.bind interfaces. | 
| javax.xml.crypto.dsig | Classes for generating and validating XML digital
signatures. | 
| javax.xml.soap | Provides the API for creating and building SOAP messages. | 
| javax.xml.stream | |
| javax.xml.transform.stream | This package implements stream- and URI- specific transformation APIs. | 
| javax.xml.ws.spi.http | Provides HTTP SPI that is used for portable deployment of JAX-WS
  web services in containers(for e.g. | 
| org.ietf.jgss | This package presents a framework that allows application developers to
    make use of security services like authentication, data integrity and
    data confidentiality from a variety of underlying security mechanisms
    like Kerberos, using a unified API. | 
| 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. | 
| org.w3c.dom.ls | 
| Modifier and Type | Method and Description | 
|---|---|
| void | ICC_Profile. write(OutputStream s)Write this ICC_Profile to an OutputStream. | 
| Constructor and Description | 
|---|
| XMLEncoder(OutputStream out)Creates a new XML encoder to write out JavaBeans
 to the stream  outusing an XML encoding. | 
| XMLEncoder(OutputStream out,
          String charset,
          boolean declaration,
          int indentation)Creates a new XML encoder to write out JavaBeans
 to the stream  outusing the givencharsetstarting from the givenindentation. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | BufferedOutputStreamThe class implements a buffered output stream. | 
| class  | ByteArrayOutputStreamThis class implements an output stream in which the data is
 written into a byte array. | 
| class  | DataOutputStreamA data output stream lets an application write primitive Java data
 types to an output stream in a portable way. | 
| class  | FileOutputStreamA file output stream is an output stream for writing data to a
  Fileor to aFileDescriptor. | 
| class  | FilterOutputStreamThis class is the superclass of all classes that filter output
 streams. | 
| class  | ObjectOutputStreamAn ObjectOutputStream writes primitive data types and graphs of Java objects
 to an OutputStream. | 
| class  | PipedOutputStreamA piped output stream can be connected to a piped input stream
 to create a communications pipe. | 
| class  | PrintStreamA  PrintStreamadds functionality to another output stream,
 namely the ability to print representations of various data values
 conveniently. | 
| Modifier and Type | Field and Description | 
|---|---|
| protected OutputStream | FilterOutputStream. outThe underlying output stream to be filtered. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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). | 
| Constructor and Description | 
|---|
| BufferedOutputStream(OutputStream out)Creates a new buffered output stream to write data to the
 specified underlying output stream. | 
| 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. | 
| DataOutputStream(OutputStream out)Creates a new data output stream to write data to the specified
 underlying output stream. | 
| FilterOutputStream(OutputStream out)Creates an output stream filter built on top of the specified
 underlying output stream. | 
| ObjectOutputStream(OutputStream out)Creates an ObjectOutputStream that writes to the specified OutputStream. | 
| OutputStreamWriter(OutputStream out)Creates an OutputStreamWriter that uses the default character encoding. | 
| OutputStreamWriter(OutputStream out,
                  Charset cs)Creates an OutputStreamWriter that uses the given charset. | 
| OutputStreamWriter(OutputStream out,
                  CharsetEncoder enc)Creates an OutputStreamWriter that uses the given charset encoder. | 
| OutputStreamWriter(OutputStream out,
                  String charsetName)Creates an OutputStreamWriter that uses the named charset. | 
| PrintStream(OutputStream out)Creates a new print stream. | 
| PrintStream(OutputStream out,
           boolean autoFlush)Creates a new print stream. | 
| PrintStream(OutputStream out,
           boolean autoFlush,
           String encoding)Creates a new print stream. | 
| PrintWriter(OutputStream out)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. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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, andPrintWriterclasses. | 
| abstract OutputStream | Process. getOutputStream()Returns the output stream connected to the normal input of the
 subprocess. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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, andPrintWriterclasses. | 
| Modifier and Type | Method and Description | 
|---|---|
| abstract OutputStream | CacheRequest. getBody()Returns an OutputStream to which the response body can be
 written. | 
| protected abstract OutputStream | SocketImpl. getOutputStream()Returns an output stream for this socket. | 
| OutputStream | URLConnection. getOutputStream()Returns an output stream that writes to this connection. | 
| OutputStream | Socket. getOutputStream()Returns an output stream for this socket. | 
| Modifier and Type | Method and Description | 
|---|---|
| static OutputStream | Channels. newOutputStream(AsynchronousByteChannel ch)Constructs a stream that writes bytes to the given channel. | 
| static OutputStream | Channels. newOutputStream(WritableByteChannel ch)Constructs a stream that writes bytes to the given channel. | 
| Modifier and Type | Method and Description | 
|---|---|
| static WritableByteChannel | Channels. newChannel(OutputStream out)Constructs a channel that writes bytes to the given stream. | 
| Modifier and Type | Method and Description | 
|---|---|
| static OutputStream | Files. newOutputStream(Path path,
               OpenOption... options)Opens or creates a file, returning an output stream that may be used to
 write bytes to the file. | 
| Modifier and Type | Method and Description | 
|---|---|
| static long | Files. copy(Path source,
    OutputStream out)Copies all bytes from a file to an output stream. | 
| Modifier and Type | Method and Description | 
|---|---|
| OutputStream | FileSystemProvider. newOutputStream(Path path,
               OpenOption... options)Opens or creates a file, returning an output stream that may be used to
 write bytes to the file. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | LogStreamDeprecated. 
 no replacement | 
| Modifier and Type | Method and Description | 
|---|---|
| OutputStream | LogStream. getOutputStream()Deprecated. 
 no replacement | 
| Modifier and Type | Method and Description | 
|---|---|
| static void | RemoteServer. setLog(OutputStream out)Log RMI calls to the output stream  out. | 
| void | LogStream. setOutputStream(OutputStream out)Deprecated. 
 no replacement | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | DigestOutputStreamA transparent stream that updates the associated message digest using
 the bits going through the stream. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | Certificate. encode(OutputStream stream)Deprecated.  Encodes the certificate to an output stream in a format that can
 be decoded by the  decodemethod. | 
| 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. | 
| Constructor and Description | 
|---|
| DigestOutputStream(OutputStream stream,
                  MessageDigest digest)Creates a digest output stream, using the specified output stream
 and message digest. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | Extension. encode(OutputStream out)Generates the extension's DER encoding and writes it to the output
 stream. | 
| Modifier and Type | Method and Description | 
|---|---|
| OutputStream | Clob. setAsciiStream(long pos)Retrieves a stream to be used to write Ascii characters to the
  CLOBvalue that thisClobobject represents,
 starting at positionpos. | 
| OutputStream | SQLXML. setBinaryStream()Retrieves a stream that can be used to write the XML value that this SQLXML instance represents. | 
| OutputStream | Blob. setBinaryStream(long pos)Retrieves a stream that can be used to write to the  BLOBvalue that thisBlobobject represents. | 
| Modifier and Type | Method and Description | 
|---|---|
| OutputStream | Base64.Encoder. wrap(OutputStream os)Wraps an output stream for encoding byte data using the  Base64encoding scheme. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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.  The preferred way to save a
 properties list is via the  store(OutputStream out,
 String comments)method or thestoreToXML(OutputStream os, String comment)method. | 
| void | Properties. store(OutputStream out,
     String comments)Writes this property list (key and element pairs) in this
  Propertiestable to the output stream in a format suitable
 for loading into aPropertiestable using theload(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,
          String encoding)Emits an XML document representing all of the properties contained
 in this table, using the specified encoding. | 
| OutputStream | Base64.Encoder. wrap(OutputStream os)Wraps an output stream for encoding byte data using the  Base64encoding scheme. | 
| Constructor and Description | 
|---|
| Formatter(OutputStream os)Constructs a new formatter with the specified output stream. | 
| Formatter(OutputStream os,
         String csn)Constructs a new formatter with the specified output stream and
 charset. | 
| Formatter(OutputStream os,
         String csn,
         Locale l)Constructs a new formatter with the specified output stream, charset,
 and locale. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | JarOutputStreamThe  JarOutputStreamclass is used to write the contents
 of a JAR file to any output stream. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | Pack200.Packer. pack(JarFile in,
    OutputStream out)Takes a JarFile and converts it into a Pack200 archive. | 
| void | Pack200.Packer. pack(JarInputStream in,
    OutputStream out)Takes a JarInputStream and converts it into a Pack200 archive. | 
| void | Manifest. write(OutputStream out)Writes the Manifest to the specified OutputStream. | 
| Constructor and Description | 
|---|
| JarOutputStream(OutputStream out)Creates a new  JarOutputStreamwith no manifest. | 
| JarOutputStream(OutputStream out,
               Manifest man)Creates a new  JarOutputStreamwith the specifiedManifest. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected void | StreamHandler. setOutputStream(OutputStream out)Change the output stream. | 
| Constructor and Description | 
|---|
| StreamHandler(OutputStream out,
             Formatter formatter)Create a StreamHandler with a given Formatter
 and output stream. | 
| Modifier and Type | Method and Description | 
|---|---|
| abstract void | Preferences. exportNode(OutputStream os)Emits on the specified output stream an XML document representing all
 of the preferences contained in this node (but not its descendants). | 
| void | AbstractPreferences. exportNode(OutputStream os)Implements the exportNode method as per the specification in
  Preferences.exportNode(OutputStream). | 
| abstract void | Preferences. exportSubtree(OutputStream os)Emits an XML document representing all of the preferences contained
 in this node and all of its descendants. | 
| void | AbstractPreferences. exportSubtree(OutputStream os)Implements the exportSubtree method as per the specification in
  Preferences.exportSubtree(OutputStream). | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | CheckedOutputStreamAn output stream that also maintains a checksum of the data being
 written. | 
| class  | DeflaterOutputStreamThis class implements an output stream filter for compressing data in
 the "deflate" compression format. | 
| class  | GZIPOutputStreamThis class implements a stream filter for writing compressed data in
 the GZIP file format. | 
| class  | InflaterOutputStreamImplements an output stream filter for uncompressing data stored in the
 "deflate" compression format. | 
| class  | ZipOutputStreamThis class implements an output stream filter for writing files in the
 ZIP file format. | 
| Constructor and Description | 
|---|
| CheckedOutputStream(OutputStream out,
                   Checksum cksum)Creates an output stream with the specified Checksum. | 
| DeflaterOutputStream(OutputStream out)Creates a new output stream with a default compressor and buffer size. | 
| DeflaterOutputStream(OutputStream out,
                    boolean syncFlush)Creates a new output stream with a default compressor, a default
 buffer size and the specified flush mode. | 
| DeflaterOutputStream(OutputStream out,
                    Deflater def)Creates a new output stream with the specified compressor and
 a default buffer size. | 
| DeflaterOutputStream(OutputStream out,
                    Deflater def,
                    boolean syncFlush)Creates a new output stream with the specified compressor, flush
 mode and a default buffer size. | 
| DeflaterOutputStream(OutputStream out,
                    Deflater def,
                    int size)Creates a new output stream with the specified compressor and
 buffer size. | 
| DeflaterOutputStream(OutputStream out,
                    Deflater def,
                    int size,
                    boolean syncFlush)Creates a new output stream with the specified compressor,
 buffer size and flush mode. | 
| GZIPOutputStream(OutputStream out)Creates a new output stream with a default buffer size. | 
| GZIPOutputStream(OutputStream out,
                boolean syncFlush)Creates a new output stream with a default buffer size and
 the specified flush mode. | 
| GZIPOutputStream(OutputStream out,
                int size)Creates a new output stream with the specified buffer size. | 
| GZIPOutputStream(OutputStream out,
                int size,
                boolean syncFlush)Creates a new output stream with the specified buffer size and
 flush mode. | 
| InflaterOutputStream(OutputStream out)Creates a new output stream with a default decompressor and buffer
 size. | 
| InflaterOutputStream(OutputStream out,
                    Inflater infl)Creates a new output stream with the specified decompressor and a
 default buffer size. | 
| InflaterOutputStream(OutputStream out,
                    Inflater infl,
                    int bufLen)Creates a new output stream with the specified decompressor and
 buffer size. | 
| ZipOutputStream(OutputStream out)Creates a new ZIP output stream. | 
| ZipOutputStream(OutputStream out,
               Charset charset)Creates a new ZIP output stream. | 
| Modifier and Type | Method and Description | 
|---|---|
| OutputStream | DataHandler. getOutputStream()Get an OutputStream for this DataHandler to allow overwriting
 the underlying data. | 
| OutputStream | URLDataSource. getOutputStream()The getOutputStream method from the URL. | 
| OutputStream | DataSource. getOutputStream()This method returns an  OutputStreamwhere the
 data can be written and throws the appropriate exception if it can
 not do so. | 
| OutputStream | FileDataSource. getOutputStream()This method will return an OutputStream representing the
 the data and will throw an IOException if it can
 not do so. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | DataContentHandler. writeTo(Object obj,
       String mimeType,
       OutputStream os)Convert the object to a byte stream of the specified MIME type
 and write it to the output stream. | 
| void | DataHandler. writeTo(OutputStream os)Write the data to an  OutputStream. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | CipherOutputStreamA CipherOutputStream is composed of an OutputStream and a Cipher so
 that write() methods first process the data before writing them out
 to the underlying OutputStream. | 
| Constructor and Description | 
|---|
| CipherOutputStream(OutputStream os)Constructs a CipherOutputStream from an OutputStream without
 specifying a Cipher. | 
| CipherOutputStream(OutputStream os,
                  Cipher c)Constructs a CipherOutputStream from an OutputStream and a
 Cipher. | 
| Modifier and Type | Method and Description | 
|---|---|
| static boolean | ImageIO. write(RenderedImage im,
     String formatName,
     OutputStream output)Writes an image using an arbitrary  ImageWriterthat supports the given format to anOutputStream. | 
| Constructor and Description | 
|---|
| FileCacheImageOutputStream(OutputStream stream,
                          File cacheDir)Constructs a  FileCacheImageOutputStreamthat will write
 to a givenoutputStream. | 
| MemoryCacheImageOutputStream(OutputStream stream)Constructs a  MemoryCacheImageOutputStreamthat will write
 to a givenOutputStream. | 
| Modifier and Type | Method and Description | 
|---|---|
| OutputStream | StreamPrintService. getOutputStream()Gets the output stream. | 
| Modifier and Type | Method and Description | 
|---|---|
| abstract StreamPrintService | StreamPrintServiceFactory. getPrintService(OutputStream out)Returns a  StreamPrintServicethat can print to
 the specified output stream. | 
| Constructor and Description | 
|---|
| StreamPrintService(OutputStream out)Constructs a StreamPrintService object. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | WebRowSet. writeXml(OutputStream oStream)Writes the data, properties, and metadata for this  WebRowSetobject
 to the givenOutputStreamobject in XML format. | 
| void | WebRowSet. writeXml(ResultSet rs,
        OutputStream oStream)Populates this  WebRowSetobject with
 the contents of the givenResultSetobject and writes its
 data, properties, and metadata
 to the givenOutputStreamobject in XML format. | 
| Modifier and Type | Method and Description | 
|---|---|
| OutputStream | SerialClob. setAsciiStream(long pos)Retrieves a stream to be used to write Ascii characters to the
  CLOBvalue that thisSerialClobobject represents,
 starting at positionpos. | 
| OutputStream | SerialBlob. setBinaryStream(long pos)Retrieves a stream that can be used to write to the  BLOBvalue that thisBlobobject represents. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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. | 
| Modifier and Type | Method and Description | 
|---|---|
| OutputStream | FileObject. openOutputStream()Gets an OutputStream for this file object. | 
| OutputStream | SimpleJavaFileObject. openOutputStream()This implementation always throws UnsupportedOperationException. | 
| OutputStream | ForwardingFileObject. openOutputStream() | 
| Modifier and Type | Method and Description | 
|---|---|
| int | Tool. run(InputStream in,
   OutputStream out,
   OutputStream err,
   String... arguments)Run the tool with the given I/O channels and arguments. | 
| Modifier and Type | Method and Description | 
|---|---|
| static void | JAXB. marshal(Object jaxbObject,
       OutputStream xml)Writes a Java object tree to XML and store it to the specified location. | 
| void | Marshaller. marshal(Object jaxbElement,
       OutputStream os)Marshal the content tree rooted at jaxbElement into an output stream. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | AbstractMarshallerImpl. marshal(Object obj,
       OutputStream os) | 
| Modifier and Type | Method and Description | 
|---|---|
| Data | Transform. transform(Data data,
         XMLCryptoContext context,
         OutputStream os)Transforms the specified data using the underlying transform algorithm. | 
| Modifier and Type | Method and Description | 
|---|---|
| abstract void | SOAPMessage. writeTo(OutputStream out)Writes this  SOAPMessageobject to the given output
 stream. | 
| Modifier and Type | Method and Description | 
|---|---|
| abstract XMLEventWriter | XMLOutputFactory. createXMLEventWriter(OutputStream stream)Create a new XMLEventWriter that writes to a stream | 
| abstract XMLEventWriter | XMLOutputFactory. createXMLEventWriter(OutputStream stream,
                    String encoding)Create a new XMLEventWriter that writes to a stream | 
| abstract XMLStreamWriter | XMLOutputFactory. createXMLStreamWriter(OutputStream stream)Create a new XMLStreamWriter that writes to a stream | 
| abstract XMLStreamWriter | XMLOutputFactory. createXMLStreamWriter(OutputStream stream,
                     String encoding)Create a new XMLStreamWriter that writes to a stream | 
| Modifier and Type | Method and Description | 
|---|---|
| OutputStream | StreamResult. getOutputStream()Get the byte stream that was set with setOutputStream. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | StreamResult. setOutputStream(OutputStream outputStream)Set the ByteStream that is to be written to. | 
| Constructor and Description | 
|---|
| StreamResult(OutputStream outputStream)Construct a StreamResult from a byte stream. | 
| Modifier and Type | Method and Description | 
|---|---|
| abstract OutputStream | HttpExchange. getResponseBody()Returns a stream to which the response body must be
 written. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | GSSContext. acceptSecContext(InputStream inStream,
                OutputStream outStream)Called by the context acceptor to process a token from the peer using
 streams. | 
| void | GSSContext. getMIC(InputStream inStream,
      OutputStream outStream,
      MessageProp msgProp)Uses streams to produce a token containing a cryptographic MIC for
 the supplied message, for transfer to the peer application. | 
| int | GSSContext. initSecContext(InputStream inStream,
              OutputStream outStream)Called by the context initiator to start the context creation
 phase and process any tokens generated
 by the peer's  acceptSecContextmethod using
 streams. | 
| void | GSSContext. unwrap(InputStream inStream,
      OutputStream outStream,
      MessageProp msgProp)Uses streams to process tokens generated by the  wrapmethod on the other side of the context. | 
| void | GSSContext. wrap(InputStream inStream,
    OutputStream outStream,
    MessageProp msgProp)Applies per-message security services over the established security
 context using streams. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | OutputStreamOuputStream is the Java API for writing IDL types
 to CDR marshal streams. | 
| Modifier and Type | Method and Description | 
|---|---|
| OutputStream | LSOutput. getByteStream()An attribute of a language and binding dependent type that represents
 a writable stream of bytes. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | LSOutput. setByteStream(OutputStream byteStream)An attribute of a language and binding dependent type that represents
 a writable stream of bytes. | 
 Submit a bug or feature 
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
 Copyright © 1993, 2016, Oracle and/or its affiliates.  All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.