public abstract class OutputStream extends Object implements AutoCloseable
| Constructor and Description |
|---|
OutputStream() |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Closes this output stream and releases any system resources associated with this stream.
|
void |
flush()
Flushes this output stream and forces any buffered output bytes to be written out.
|
void |
write(byte[] b)
Writes b.length bytes from the specified byte array to this output stream.
|
void |
write(byte[] b,
int off,
int len)
Writes len bytes from the specified byte array starting at offset off to this output stream.
|
abstract void |
write(int b)
Writes the specified byte to this output stream.
|
public void close()
throws IOException
close in interface AutoCloseableIOExceptionpublic void flush()
throws IOException
IOExceptionpublic void write(byte[] b)
throws IOException
IOExceptionpublic void write(byte[] b,
int off,
int len)
throws IOException
IOExceptionpublic abstract void write(int b)
throws IOException
IOException