Package | Description |
---|---|
java.io |
Input/Output support
|
Modifier and Type | Method and Description |
---|---|
void |
OutputStream.write(byte[] b)
This method all the writes bytes from the passed array to the
output stream.
|
void |
OutputStream.write(byte[] b,
int off,
int len)
This method writes
len bytes from the specified array
b starting at index off into the array. |