Writes
b.length
bytes to this output stream.
The write
method of FilterOutputStream
calls its write
method of three arguments with the
arguments b
, 0
, and
b.length
.
Note that this method does not call the one-argument
write
method of its underlying stream with the single
argument b
.
Parameters:
- b - the data to be written.
Throws:
- IOException - if an I/O error occurs.
See Also:
FilterOutputStream.write(byte[], int, int)
,