|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Object | +--java.io.OutputStream
| Constructor Summary | |
OutputStream()
Default constructor. |
|
| Method Summary | |
void |
close()
Closes this output stream and releases all system resources associated with it. |
void |
flush()
Flushes this output stream. |
void |
write(byte[] b)
Writes b.length bytes from b to this output stream. |
void |
write(byte[] b,
int off,
int len)
Writes len bytes from b to this output stream starting at offset off. |
abstract void |
write(int b)
Writes a single byte to this output stream. |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, toString |
| Constructor Detail |
public OutputStream()
| Method Detail |
public void write(byte[] b,
int off,
int len)
throws IOException
b - Array of bytes containing the data to be written.off - Offset into b where the data begins.len - Number of bytes to be written.
IOException - if an I/O error occures.
public void close()
throws IOException
IOException
public void flush()
throws IOException
IOException
public abstract void write(int b)
throws IOException
IOException - if an I/O error occures.
public void write(byte[] b)
throws IOException
b - Array of bytes containing the data to be written.
IOException - if an I/O error occures.
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||