Uses of Class
java.io.OutputStream

Packages that use OutputStream
java.io   
java.lang   
java.net   
java.security   
java.util   
java.util.jar   
java.util.zip   
javax.microedition.io   
javax.servlet   
org.apache.felix.cm.file   
org.apache.felix.deploymentadmin   
org.apache.felix.fileinstall.internal   
org.apache.felix.framework.util   
org.apache.felix.gogo.command   
org.apache.felix.gogo.runtime.threadio   
org.apache.felix.gogo.shell   
org.apache.felix.mosgi.jmx.httpconnector.mx4j.tools.adaptor.http   
org.apache.felix.prefs.impl   
org.osgi.service.io IO Connector Package Version 1.0. 
 

Uses of OutputStream in java.io
 

Subclasses of OutputStream in java.io
 class BufferedOutputStream
           
 class ByteArrayOutputStream
           
 class DataOutputStream
           
 class FileOutputStream
           
 class FilterOutputStream
           
 class ObjectOutputStream
           
 class PipedOutputStream
           
 class PrintStream
           
 

Fields in java.io declared as OutputStream
protected  OutputStream FilterOutputStream.out
           
 

Methods in java.io with parameters of type OutputStream
 void ByteArrayOutputStream.writeTo(OutputStream var0)
           
 

Constructors in java.io with parameters of type OutputStream
BufferedOutputStream(OutputStream var0)
           
BufferedOutputStream(OutputStream var0, int var1)
           
DataOutputStream(OutputStream var0)
           
FilterOutputStream(OutputStream var0)
           
ObjectOutputStream(OutputStream var0)
           
OutputStreamWriter(OutputStream var0)
           
OutputStreamWriter(OutputStream var0, String var1)
           
PrintStream(OutputStream var0)
           
PrintStream(OutputStream var0, boolean var1)
           
PrintWriter(OutputStream var0)
           
PrintWriter(OutputStream var0, boolean var1)
           
 

Uses of OutputStream in java.lang
 

Methods in java.lang that return OutputStream
abstract  OutputStream Process.getOutputStream()
           
 

Uses of OutputStream in java.net
 

Methods in java.net that return OutputStream
 OutputStream URLConnection.getOutputStream()
           
protected abstract  OutputStream SocketImpl.getOutputStream()
           
 OutputStream Socket.getOutputStream()
           
 

Uses of OutputStream in java.security
 

Subclasses of OutputStream in java.security
 class DigestOutputStream
           
 

Methods in java.security with parameters of type OutputStream
 void Certificate.encode(OutputStream var0)
           
abstract  void KeyStoreSpi.engineStore(OutputStream var0, char[] var1)
           
 void KeyStore.store(OutputStream var0, char[] var1)
           
 

Constructors in java.security with parameters of type OutputStream
DigestOutputStream(OutputStream var0, MessageDigest var1)
           
 

Uses of OutputStream in java.util
 

Methods in java.util with parameters of type OutputStream
 void Properties.save(OutputStream var0, String var1)
           
 void Properties.store(OutputStream var0, String var1)
           
 

Uses of OutputStream in java.util.jar
 

Subclasses of OutputStream in java.util.jar
 class JarOutputStream
           
 

Methods in java.util.jar with parameters of type OutputStream
 void Manifest.write(OutputStream var0)
           
 

Constructors in java.util.jar with parameters of type OutputStream
JarOutputStream(OutputStream var0)
           
JarOutputStream(OutputStream var0, Manifest var1)
           
 

Uses of OutputStream in java.util.zip
 

Subclasses of OutputStream in java.util.zip
 class CheckedOutputStream
           
 class DeflaterOutputStream
           
 class GZIPOutputStream
           
 class ZipOutputStream
           
 

Constructors in java.util.zip with parameters of type OutputStream
CheckedOutputStream(OutputStream var0, Checksum var1)
           
DeflaterOutputStream(OutputStream var0)
           
DeflaterOutputStream(OutputStream var0, Deflater var1)
           
DeflaterOutputStream(OutputStream var0, Deflater var1, int var2)
           
GZIPOutputStream(OutputStream var0)
           
GZIPOutputStream(OutputStream var0, int var1)
           
ZipOutputStream(OutputStream var0)
           
 

Uses of OutputStream in javax.microedition.io
 

Methods in javax.microedition.io that return OutputStream
 OutputStream OutputConnection.openOutputStream()
           
static OutputStream Connector.openOutputStream(String var0)
           
 

Uses of OutputStream in javax.servlet
 

Subclasses of OutputStream in javax.servlet
 class ServletOutputStream
          Provides an output stream for sending binary data to the client.
 

Uses of OutputStream in org.apache.felix.cm.file
 

Methods in org.apache.felix.cm.file with parameters of type OutputStream
static void ConfigurationHandler.write(OutputStream out, Dictionary properties)
          Writes the configuration data from the Dictionary to the given OutputStream.
 

Uses of OutputStream in org.apache.felix.deploymentadmin
 

Constructors in org.apache.felix.deploymentadmin with parameters of type OutputStream
OutputtingInputStream(InputStream inputStream, OutputStream outputStream)
          Creates an instance of the OutputtingInputStream.
 

Uses of OutputStream in org.apache.felix.fileinstall.internal
 

Methods in org.apache.felix.fileinstall.internal with parameters of type OutputStream
static void Util.jarDir(File directory, OutputStream os)
           
 

Uses of OutputStream in org.apache.felix.framework.util
 

Methods in org.apache.felix.framework.util with parameters of type OutputStream
static void Util.encode(InputStream in, OutputStream out, int len)
           
 

Uses of OutputStream in org.apache.felix.gogo.command
 

Methods in org.apache.felix.gogo.command with parameters of type OutputStream
static void Base64Encoder.encode(InputStream in, OutputStream out, int len)
           
 

Uses of OutputStream in org.apache.felix.gogo.runtime.threadio
 

Subclasses of OutputStream in org.apache.felix.gogo.runtime.threadio
 class ThreadPrintStream
           
 

Uses of OutputStream in org.apache.felix.gogo.shell
 

Methods in org.apache.felix.gogo.shell with parameters of type OutputStream
static void Posix.copy(InputStream in, OutputStream out)
           
static void Posix.copy(URI source, OutputStream out)
           
 

Uses of OutputStream in org.apache.felix.mosgi.jmx.httpconnector.mx4j.tools.adaptor.http
 

Subclasses of OutputStream in org.apache.felix.mosgi.jmx.httpconnector.mx4j.tools.adaptor.http
 class HttpOutputStream
          HttpAdaptor sets the basic adaptor listening for HTTP requests
 

Constructors in org.apache.felix.mosgi.jmx.httpconnector.mx4j.tools.adaptor.http with parameters of type OutputStream
HttpOutputStream(OutputStream out, HttpInputStream in)
          Creates a new HttpOutputStream with a given OutputStream and an InputStream
 

Uses of OutputStream in org.apache.felix.prefs.impl
 

Methods in org.apache.felix.prefs.impl that return OutputStream
protected abstract  OutputStream StreamBackingStoreImpl.getOutputStream(PreferencesDescription desc)
          Get the output stream to write the preferences.
protected  OutputStream DataFileBackingStoreImpl.getOutputStream(PreferencesDescription desc)
           
 

Methods in org.apache.felix.prefs.impl with parameters of type OutputStream
protected  void StreamBackingStoreImpl.write(PreferencesImpl prefs, OutputStream os)
          Write the preferences recursively to the output stream.
protected  void StreamBackingStoreImpl.writePreferences(PreferencesImpl prefs, OutputStream out)
          Save this preferences to an output stream.
 

Uses of OutputStream in org.osgi.service.io
 

Methods in org.osgi.service.io that return OutputStream
 OutputStream ConnectorService.openOutputStream(String name)
          Create and open an OutputStream object for the specified name.
 



Copyright © 2011 Apache Software Foundation. All Rights Reserved.