CheckedOutputStream.write
Class Overview | Class Members |
This Package |
All Packages
public void write( int b ) throws IOException
Parameters
- b
- the byte to be written
Description
Writes a byte. Will block until the byte is actually written.
Exceptions
IOException
if an I/O error has occurred
Overrides
write in class FilterOutputStream
public void write( byte b[],
int off,
int len ) throws IOException
Parameters
- buf
- the data to be written
- off
- the start offset of the data
- len
- the number of bytes to be written
Description
Writes an array of bytes. Will block until the bytes are
actually written.
Exceptions
IOException
if an I/O error has occurred
Overrides
write in class FilterOutputStream