Java in a Nutshell Online Quick Reference for Java 1.1
CLASS java.io.OutputStream
Availability: JDK 1.0
public abstract class OutputStream extends Object {
// Default Constructor: public OutputStream()
// Public Instance Methods
public void close() throws IOException;
public void flush() throws IOException;
public abstract void write(int b) throws IOException;
public void write(byte[] b) throws IOException;
public void write(byte[] b, int off, int len) throws IOException;
}
- Extended By:
-
ByteArrayOutputStream,
FileOutputStream,
FilterOutputStream,
ObjectOutputStream,
PipedOutputStream.
- Passed To:
-
BufferedOutputStream.BufferedOutputStream(),
ByteArrayOutputStream.writeTo(),
Certificate.encode(),
CheckedOutputStream.CheckedOutputStream(),
DataOutputStream.DataOutputStream(),
DeflaterOutputStream.DeflaterOutputStream(),
DigestOutputStream.DigestOutputStream(),
FilterOutputStream.FilterOutputStream(),
GZIPOutputStream.GZIPOutputStream(),
LogStream.setOutputStream(),
ObjectOutputStream.ObjectOutputStream(),
OutputStreamWriter.OutputStreamWriter(),
PrintStream.PrintStream(),
PrintWriter.PrintWriter(),
Properties.save(),
RemoteServer.setLog(),
Runtime.getLocalizedOutputStream(),
ZipOutputStream.ZipOutputStream().
- Returned By:
-
LogStream.getOutputStream(),
Process.getOutputStream(),
Runtime.getLocalizedOutputStream(),
Socket.getOutputStream(),
SocketImpl.getOutputStream(),
URLConnection.getOutputStream().
- Type Of:
-
FilterOutputStream.out.
Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan.
Copyright © 1997 by O'Reilly & Associates.