java.io
Class OutputStream
java.lang.Object
java.io.OutputStream
- Direct Known Subclasses:
- DebugOutOutputStream, FilterOutputStream
public abstract class OutputStream
- extends Object
|
Method Summary |
void |
close()
|
void |
flush()
|
void |
write(byte[] b)
|
void |
write(byte[] b,
int off,
int len)
|
abstract void |
write(int b)
|
OutputStream
public OutputStream()
close
public void close()
throws IOException
- Throws:
IOException
flush
public void flush()
throws IOException
- Throws:
IOException
write
public abstract void write(int b)
throws IOException
- Throws:
IOException
write
public void write(byte[] b,
int off,
int len)
throws IOException
- Throws:
IOException
write
public void write(byte[] b)
throws IOException
- Throws:
IOException