Uses of Class
java.io.OutputStream
Packages that use OutputStream
Package
Description
Provides a simple high-level Http server API, which can be used to build
   embedded HTTP servers.
Provides classes for color spaces.
Contains classes related to developing beans -- components based on
 the JavaBeans architecture.
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.
Provides the classes for implementing networking applications.
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.
Defines interfaces and classes for the Java virtual machine to access files,
 file attributes, and file systems.
Service-provider classes for the 
java.nio.file package.Provides classes and interfaces for supporting the server side of RMI.
Provides the classes and interfaces for the security framework.
Provides classes and interfaces for parsing and managing
 certificates, certificate revocation lists (CRLs), and
 certification paths.
Provides the API for accessing and processing data stored in a
 data source (usually a relational database) using 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.
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.
Provides the classes and interfaces of
 the Java 2 platform's core logging facilities.
This package allows applications to store and retrieve user and system
 preference and configuration data.
Provides classes for reading and writing the standard ZIP and GZIP file
 formats.
Provides the classes and interfaces for cryptographic
 operations.
The main package of the Java Image I/O API.
A package of the Java Image I/O API dealing with low-level I/O from files and
 streams.
Provides the principal classes and interfaces for the Java Print
 Service API.
Provides interfaces and classes for I/O, sequencing, and synthesis of MIDI
 (Musical Instrument Digital Interface) data.
Supplies interfaces for service providers to implement when offering new MIDI
 devices, MIDI file readers and writers, or sound bank readers.
Provides interfaces and classes for capture, processing, and playback of
 sampled audio data.
Supplies abstract classes for service providers to subclass when offering new
 audio devices, sound file readers and writers, or audio format converters.
Standard interfaces and base classes for JDBC 
RowSet
 implementations.Provides utility classes to allow serializable mappings between SQL types
 and data types in the Java programming language.
Provides classes and interfaces that deal with editable and noneditable text
 components.
Provides a class (
RTFEditorKit) for creating Rich-Text-Format text
 editors.Provides interfaces for tools which can be invoked from a program,
 for example, compilers.
Classes for generating and validating XML digital
 signatures.
 Defines interfaces and classes for the Streaming API for XML (StAX).
Provides stream and URI specific transformation classes.
Provides implementation support for building JShell execution engines.
This package defines APIs for signing jar files.
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.
 Provides interfaces for DOM Level 3 Load and Save.
- 
Uses of OutputStream in com.sun.net.httpserverMethods in com.sun.net.httpserver that return OutputStreamModifier and TypeMethodDescriptionabstract OutputStreamHttpExchange.getResponseBody()Returns a stream to which the response body must be written.Methods in com.sun.net.httpserver with parameters of type OutputStreamModifier and TypeMethodDescriptionabstract voidHttpExchange.setStreams(InputStream i, OutputStream o) Used by Filters to wrap either (or both) of this exchange'sInputStreamandOutputStream, with the given filtered streams so that subsequent calls toHttpExchange.getRequestBody()will return the givenInputStream, and calls toHttpExchange.getResponseBody()will return the givenOutputStream.
- 
Uses of OutputStream in java.awt.colorMethods in java.awt.color with parameters of type OutputStreamModifier and TypeMethodDescriptionvoidICC_Profile.write(OutputStream s) Write thisICC_Profileto anOutputStream.
- 
Uses of OutputStream in java.beansConstructors in java.beans with parameters of type OutputStreamModifierConstructorDescriptionXMLEncoder(OutputStream out) Creates a new XML encoder to write out JavaBeans to the streamoutusing an XML encoding.XMLEncoder(OutputStream out, String charset, boolean declaration, int indentation) Creates a new XML encoder to write out JavaBeans to the streamoutusing the givencharsetstarting from the givenindentation.
- 
Uses of OutputStream in java.ioSubclasses of OutputStream in java.ioModifier and TypeClassDescriptionclassThe class implements a buffered output stream.classThis class implements an output stream in which the data is written into a byte array.classA data output stream lets an application write primitive Java data types to an output stream in a portable way.classA file output stream is an output stream for writing data to aFileor to aFileDescriptor.classThis class is the superclass of all classes that filter output streams.classAn ObjectOutputStream writes primitive data types and graphs of Java objects to an OutputStream.classA piped output stream can be connected to a piped input stream to create a communications pipe.classAPrintStreamadds functionality to another output stream, namely the ability to print representations of various data values conveniently.Fields in java.io declared as OutputStreamModifier and TypeFieldDescriptionprotected OutputStreamFilterOutputStream.outThe underlying output stream to be filtered.Methods in java.io that return OutputStreamModifier and TypeMethodDescriptionstatic OutputStreamOutputStream.nullOutputStream()Returns a newOutputStreamwhich discards all bytes.Methods in java.io with parameters of type OutputStreamModifier and TypeMethodDescriptionlongInputStream.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.voidByteArrayOutputStream.writeTo(OutputStream out) Writes the complete contents of thisByteArrayOutputStreamto the specified output stream argument, as if by calling the output stream's write method usingout.write(buf, 0, count).Constructors in java.io with parameters of type OutputStreamModifierConstructorDescriptionCreates 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.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.OutputStreamWriter(OutputStream out, String charsetName) Creates an OutputStreamWriter that uses the named charset.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.PrintStream(OutputStream out) 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, String encoding) Creates a new print stream, with the specified OutputStream, line flushing, and character encoding.PrintStream(OutputStream out, boolean autoFlush, Charset charset) Creates a new print stream, with the specified OutputStream, line flushing and charset.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.PrintWriter(OutputStream out, boolean autoFlush, Charset charset) Creates a new PrintWriter from an existing OutputStream.
- 
Uses of OutputStream in java.langMethods in java.lang that return OutputStreamModifier and TypeMethodDescriptionabstract OutputStreamProcess.getOutputStream()Returns the output stream connected to the normal input of the process.
- 
Uses of OutputStream in java.netMethods in java.net that return OutputStreamModifier and TypeMethodDescriptionabstract OutputStreamCacheRequest.getBody()Returns an OutputStream to which the response body can be written.Socket.getOutputStream()Returns an output stream for this socket.protected abstract OutputStreamSocketImpl.getOutputStream()Returns an output stream for this socket.URLConnection.getOutputStream()Returns an output stream that writes to this connection.
- 
Uses of OutputStream in java.nio.channelsMethods in java.nio.channels that return OutputStreamModifier and TypeMethodDescriptionstatic OutputStreamChannels.newOutputStream(AsynchronousByteChannel ch) Constructs a stream that writes bytes to the given channel.static OutputStreamChannels.newOutputStream(WritableByteChannel ch) Constructs a stream that writes bytes to the given channel.Methods in java.nio.channels with parameters of type OutputStreamModifier and TypeMethodDescriptionstatic WritableByteChannelChannels.newChannel(OutputStream out) Constructs a channel that writes bytes to the given stream.
- 
Uses of OutputStream in java.nio.fileMethods in java.nio.file that return OutputStreamModifier and TypeMethodDescriptionstatic OutputStreamFiles.newOutputStream(Path path, OpenOption... options) Opens or creates a file, returning an output stream that may be used to write bytes to the file.Methods in java.nio.file with parameters of type OutputStreamModifier and TypeMethodDescriptionstatic longFiles.copy(Path source, OutputStream out) Copies all bytes from a file to an output stream.
- 
Uses of OutputStream in java.nio.file.spiMethods in java.nio.file.spi that return OutputStreamModifier and TypeMethodDescriptionFileSystemProvider.newOutputStream(Path path, OpenOption... options) Opens or creates a file, returning an output stream that may be used to write bytes to the file.
- 
Uses of OutputStream in java.rmi.serverSubclasses of OutputStream in java.rmi.serverMethods in java.rmi.server that return OutputStreamMethods in java.rmi.server with parameters of type OutputStreamModifier and TypeMethodDescriptionstatic voidRemoteServer.setLog(OutputStream out) Log RMI calls to the output streamout.voidLogStream.setOutputStream(OutputStream out) Deprecated.no replacement
- 
Uses of OutputStream in java.securitySubclasses of OutputStream in java.securityModifier and TypeClassDescriptionclassA transparent stream that updates the associated message digest using the bits going through the stream.Methods in java.security with parameters of type OutputStreamModifier and TypeMethodDescriptionvoidCertificate.encode(OutputStream stream) Deprecated, for removal: This API element is subject to removal in a future version.Encodes the certificate to an output stream in a format that can be decoded by thedecodemethod.abstract voidKeyStoreSpi.engineStore(OutputStream stream, char[] password) Stores this keystore to the given output stream, and protects its integrity with the given password.final voidKeyStore.store(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 OutputStreamModifierConstructorDescriptionDigestOutputStream(OutputStream stream, MessageDigest digest) Creates a digest output stream, using the specified output stream and message digest.
- 
Uses of OutputStream in java.security.certMethods in java.security.cert with parameters of type OutputStreamModifier and TypeMethodDescriptionvoidExtension.encode(OutputStream out) Generates the extension's DER encoding and writes it to the output stream.
- 
Uses of OutputStream in java.sqlMethods in java.sql that return OutputStreamModifier and TypeMethodDescriptionClob.setAsciiStream(long pos) Retrieves a stream to be used to write Ascii characters to theCLOBvalue that thisClobobject represents, starting at positionpos.Blob.setBinaryStream(long pos) Retrieves a stream that can be used to write to theBLOBvalue that thisBlobobject represents.SQLXML.setBinaryStream()Retrieves a stream that can be used to write the XML value that this SQLXML instance represents.
- 
Uses of OutputStream in java.utilMethods in java.util that return OutputStreamModifier and TypeMethodDescriptionBase64.Encoder.wrap(OutputStream os) Wraps an output stream for encoding byte data using theBase64encoding scheme.Methods in java.util with parameters of type OutputStreamModifier and TypeMethodDescriptionvoidProperties.save(OutputStream out, String comments) Deprecated.This method does not throw an IOException if an I/O error occurs while saving the property list.voidProperties.store(OutputStream out, String comments) Writes this property list (key and element pairs) in thisPropertiestable to the output stream in a format suitable for loading into aPropertiestable using theload(InputStream)method.voidProperties.storeToXML(OutputStream os, String comment) Emits an XML document representing all of the properties contained in this table.voidProperties.storeToXML(OutputStream os, String comment, String encoding) Emits an XML document representing all of the properties contained in this table, using the specified encoding.voidProperties.storeToXML(OutputStream os, String comment, Charset charset) Emits an XML document representing all of the properties contained in this table, using the specified encoding.Base64.Encoder.wrap(OutputStream os) Wraps an output stream for encoding byte data using theBase64encoding scheme.Constructors in java.util with parameters of type OutputStreamModifierConstructorDescriptionConstructs 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.Formatter(OutputStream os, Charset charset, Locale l) Constructs a new formatter with the specified output stream, charset, and locale.
- 
Uses of OutputStream in java.util.jarSubclasses of OutputStream in java.util.jarModifier and TypeClassDescriptionclassTheJarOutputStreamclass is used to write the contents of a JAR file to any output stream.Methods in java.util.jar with parameters of type OutputStreamModifier and TypeMethodDescriptionvoidManifest.write(OutputStream out) Writes the Manifest to the specified OutputStream.Constructors in java.util.jar with parameters of type OutputStreamModifierConstructorDescriptionCreates a newJarOutputStreamwith no manifest.JarOutputStream(OutputStream out, Manifest man) Creates a newJarOutputStreamwith the specifiedManifest.
- 
Uses of OutputStream in java.util.loggingMethods in java.util.logging with parameters of type OutputStreamModifier and TypeMethodDescriptionprotected voidStreamHandler.setOutputStream(OutputStream out) Change the output stream.Constructors in java.util.logging with parameters of type OutputStreamModifierConstructorDescriptionStreamHandler(OutputStream out, Formatter formatter) Create aStreamHandlerwith a givenFormatterand output stream.
- 
Uses of OutputStream in java.util.prefsMethods in java.util.prefs with parameters of type OutputStreamModifier and TypeMethodDescriptionvoidAbstractPreferences.exportNode(OutputStream os) Implements theexportNodemethod as per the specification inPreferences.exportNode(OutputStream).abstract voidPreferences.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).voidAbstractPreferences.exportSubtree(OutputStream os) Implements theexportSubtreemethod as per the specification inPreferences.exportSubtree(OutputStream).abstract voidPreferences.exportSubtree(OutputStream os) Emits an XML document representing all of the preferences contained in this node and all of its descendants.
- 
Uses of OutputStream in java.util.zipSubclasses of OutputStream in java.util.zipModifier and TypeClassDescriptionclassAn output stream that also maintains a checksum of the data being written.classThis class implements an output stream filter for compressing data in the "deflate" compression format.classThis class implements a stream filter for writing compressed data in the GZIP file format.classImplements an output stream filter for uncompressing data stored in the "deflate" compression format.classThis class implements an output stream filter for writing files in the ZIP file format.Constructors in java.util.zip with parameters of type OutputStreamModifierConstructorDescriptionCheckedOutputStream(OutputStream out, Checksum cksum) Creates an output stream with the specified Checksum.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.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.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.Creates a new ZIP output stream.ZipOutputStream(OutputStream out, Charset charset) Creates a new ZIP output stream.
- 
Uses of OutputStream in javax.cryptoSubclasses of OutputStream in javax.cryptoModifier and TypeClassDescriptionclassA 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.Constructors in javax.crypto with parameters of type OutputStreamModifierConstructorDescriptionprotectedConstructs a CipherOutputStream from an OutputStream without specifying a Cipher.CipherOutputStream(OutputStream os, Cipher c) Constructs a CipherOutputStream from an OutputStream and a Cipher.
- 
Uses of OutputStream in javax.imageioMethods in javax.imageio with parameters of type OutputStreamModifier and TypeMethodDescriptionstatic booleanImageIO.write(RenderedImage im, String formatName, OutputStream output) Writes an image using an arbitraryImageWriterthat supports the given format to anOutputStream.
- 
Uses of OutputStream in javax.imageio.streamConstructors in javax.imageio.stream with parameters of type OutputStreamModifierConstructorDescriptionFileCacheImageOutputStream(OutputStream stream, File cacheDir) Constructs aFileCacheImageOutputStreamthat will write to a givenoutputStream.Constructs aMemoryCacheImageOutputStreamthat will write to a givenOutputStream.
- 
Uses of OutputStream in javax.printMethods in javax.print that return OutputStreamMethods in javax.print with parameters of type OutputStreamModifier and TypeMethodDescriptionabstract StreamPrintServiceStreamPrintServiceFactory.getPrintService(OutputStream out) Returns aStreamPrintServicethat can print to the specified output stream.Constructors in javax.print with parameters of type OutputStreamModifierConstructorDescriptionprotectedConstructs aStreamPrintServiceobject.
- 
Uses of OutputStream in javax.sound.midiMethods in javax.sound.midi with parameters of type OutputStreamModifier and TypeMethodDescriptionstatic intMidiSystem.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.spiMethods in javax.sound.midi.spi with parameters of type OutputStreamModifier and TypeMethodDescriptionabstract intMidiFileWriter.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.sampledMethods in javax.sound.sampled with parameters of type OutputStreamModifier and TypeMethodDescriptionstatic intAudioSystem.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.spiMethods in javax.sound.sampled.spi with parameters of type OutputStreamModifier and TypeMethodDescriptionabstract intAudioFileWriter.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.sql.rowsetMethods in javax.sql.rowset with parameters of type OutputStreamModifier and TypeMethodDescriptionvoidWebRowSet.writeXml(OutputStream oStream) Writes the data, properties, and metadata for thisWebRowSetobject to the givenOutputStreamobject in XML format.voidWebRowSet.writeXml(ResultSet rs, OutputStream oStream) Populates thisWebRowSetobject with the contents of the givenResultSetobject and writes its data, properties, and metadata to the givenOutputStreamobject in XML format.
- 
Uses of OutputStream in javax.sql.rowset.serialMethods in javax.sql.rowset.serial that return OutputStreamModifier and TypeMethodDescriptionSerialClob.setAsciiStream(long pos) Retrieves a stream to be used to write Ascii characters to theCLOBvalue that thisSerialClobobject represents, starting at positionpos.SerialBlob.setBinaryStream(long pos) Retrieves a stream that can be used to write to theBLOBvalue that thisBlobobject represents.
- 
Uses of OutputStream in javax.swing.textMethods in javax.swing.text with parameters of type OutputStreamModifier and TypeMethodDescriptionvoidDefaultEditorKit.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.abstract voidEditorKit.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.rtfMethods in javax.swing.text.rtf with parameters of type OutputStreamModifier and TypeMethodDescriptionvoidRTFEditorKit.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 javax.toolsMethods in javax.tools that return OutputStreamModifier and TypeMethodDescriptionFileObject.openOutputStream()Returns an OutputStream for this file object.ForwardingFileObject.openOutputStream()SimpleJavaFileObject.openOutputStream()This implementation always throws UnsupportedOperationException.Methods in javax.tools with parameters of type OutputStreamModifier and TypeMethodDescriptionintTool.run(InputStream in, OutputStream out, OutputStream err, String... arguments) Run the tool with the given I/O channels and arguments.
- 
Uses of OutputStream in javax.xml.crypto.dsigMethods in javax.xml.crypto.dsig with parameters of type OutputStreamModifier and TypeMethodDescriptionTransform.transform(Data data, XMLCryptoContext context, OutputStream os) Transforms the specified data using the underlying transform algorithm.
- 
Uses of OutputStream in javax.xml.streamMethods in javax.xml.stream with parameters of type OutputStreamModifier and TypeMethodDescriptionabstract XMLEventWriterXMLOutputFactory.createXMLEventWriter(OutputStream stream) Create a new XMLEventWriter that writes to a streamabstract XMLEventWriterXMLOutputFactory.createXMLEventWriter(OutputStream stream, String encoding) Create a new XMLEventWriter that writes to a streamabstract XMLStreamWriterXMLOutputFactory.createXMLStreamWriter(OutputStream stream) Create a new XMLStreamWriter that writes to a streamabstract XMLStreamWriterXMLOutputFactory.createXMLStreamWriter(OutputStream stream, String encoding) Create a new XMLStreamWriter that writes to a stream
- 
Uses of OutputStream in javax.xml.transform.streamMethods in javax.xml.transform.stream that return OutputStreamModifier and TypeMethodDescriptionStreamResult.getOutputStream()Get the byte stream that was set with setOutputStream.Methods in javax.xml.transform.stream with parameters of type OutputStreamModifier and TypeMethodDescriptionvoidStreamResult.setOutputStream(OutputStream outputStream) Set the ByteStream that is to be written to.Constructors in javax.xml.transform.stream with parameters of type OutputStreamModifierConstructorDescriptionStreamResult(OutputStream outputStream) Construct a StreamResult from a byte stream.
- 
Uses of OutputStream in jdk.jshell.executionMethods in jdk.jshell.execution with parameters of type OutputStreamModifier and TypeMethodDescriptionstatic voidUtil.forwardExecutionControlAndIO(ExecutionControl ec, InputStream inStream, OutputStream outStream, Map<String, Consumer<OutputStream>> outputStreamMap, Map<String, Consumer<InputStream>> inputStreamMap) Forward commands from the input to the specifiedExecutionControlinstance, then responses back on the output.static ExecutionControlUtil.remoteInputOutput(InputStream input, OutputStream output, Map<String, OutputStream> outputStreamMap, Map<String, InputStream> inputStreamMap, BiFunction<ObjectInput, ObjectOutput, ExecutionControl> factory) Creates an ExecutionControl for given packetized input and output.Method parameters in jdk.jshell.execution with type arguments of type OutputStreamModifier and TypeMethodDescriptionstatic voidUtil.forwardExecutionControlAndIO(ExecutionControl ec, InputStream inStream, OutputStream outStream, Map<String, Consumer<OutputStream>> outputStreamMap, Map<String, Consumer<InputStream>> inputStreamMap) Forward commands from the input to the specifiedExecutionControlinstance, then responses back on the output.static ExecutionControlUtil.remoteInputOutput(InputStream input, OutputStream output, Map<String, OutputStream> outputStreamMap, Map<String, InputStream> inputStreamMap, BiFunction<ObjectInput, ObjectOutput, ExecutionControl> factory) Creates an ExecutionControl for given packetized input and output.
- 
Uses of OutputStream in jdk.security.jarsignerMethods in jdk.security.jarsigner with parameters of type OutputStreamModifier and TypeMethodDescriptionvoidJarSigner.sign(ZipFile file, OutputStream os) Signs a file into anOutputStream.
- 
Uses of OutputStream in org.ietf.jgssMethods in org.ietf.jgss with parameters of type OutputStreamModifier and TypeMethodDescriptionvoidGSSContext.acceptSecContext(InputStream inStream, OutputStream outStream) Deprecated.The stream-based methods have been removed from RFC 8353.voidGSSContext.getMIC(InputStream inStream, OutputStream outStream, MessageProp msgProp) Deprecated.The stream-based methods have been removed from RFC 8353.intGSSContext.initSecContext(InputStream inStream, OutputStream outStream) Deprecated.The stream-based methods have been removed from RFC 8353.voidGSSContext.unwrap(InputStream inStream, OutputStream outStream, MessageProp msgProp) Deprecated.The stream-based methods have been removed from RFC 8353.voidGSSContext.wrap(InputStream inStream, OutputStream outStream, MessageProp msgProp) Deprecated.The stream-based methods have been removed from RFC 8353.
- 
Uses of OutputStream in org.w3c.dom.lsMethods in org.w3c.dom.ls that return OutputStreamModifier and TypeMethodDescriptionLSOutput.getByteStream()An attribute of a language and binding dependent type that represents a writable stream of bytes.Methods in org.w3c.dom.ls with parameters of type OutputStreamModifier and TypeMethodDescriptionvoidLSOutput.setByteStream(OutputStream byteStream) An attribute of a language and binding dependent type that represents a writable stream of bytes.