|
DCT Lightfoot v3 API specification | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Object | +--java.io.OutputStream
The superclass of all byte writing streams
| Constructor Summary | |
OutputStream()
Create a new output stream |
|
| Method Summary | |
void |
close()
Close the buffer |
void |
flush()
Flush the buffer |
void |
write(byte[] b)
Write an array of bytes |
void |
write(byte[] b,
int off,
int len)
Write parts of the array of bytes |
abstract void |
write(int b)
Write a byte |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public OutputStream()
| Method Detail |
public void close()
throws IOException
IOException - if there is an IO error
public void flush()
throws IOException
IOException - if there is an IO error
public abstract void write(int b)
throws IOException
write in interface Writableb - The byte to write
IOException - if there is an IO error
public void write(byte[] b)
throws IOException
b - The bytes to write
IOException - if there is an IO error
public void write(byte[] b,
int off,
int len)
throws IOException
write in interface Writableb - The bytes to writeoff - The offset into the arraylen - The number of bytes to write
IOException - if there is an IO error
|
DCT Lightfoot v3 API specification | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||