|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface ByteOutput
An output stream of bytes.
| Method Summary | |
|---|---|
void |
write(byte[] b)
Write all the bytes from the given array to the stream. |
void |
write(byte[] b,
int off,
int len)
Write some of the bytes from the given array to the stream. |
void |
write(int b)
Writes to the output stream the eight low-order bits of the argument b. |
| Methods inherited from interface java.io.Closeable |
|---|
close |
| Methods inherited from interface java.io.Flushable |
|---|
flush |
| Method Detail |
|---|
void write(int b)
throws java.io.IOException
b. The 24 high-order bits of
b are ignored.
b - the byte to write
java.io.IOException - if an error occurs
void write(byte[] b)
throws java.io.IOException
b - the byte array
java.io.IOException - if an error occurs
void write(byte[] b,
int off,
int len)
throws java.io.IOException
b - the byte arrayoff - the index to start writing fromlen - the number of bytes to write
java.io.IOException - if an error occurs
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||