Writes <code>b.length</code> bytes to this output stream.
<p>
The <code>write</code> method of <code>FilterOutputStream</code>
calls its <code>write</code> method of three arguments with the
arguments <code>b</code>, <code>0</code>, and
<code>b.length</code>.
<p>
Note that this method does not call the one-argument
<code>write</code> method of its underlying output stream with
the single argument <code>b</code>.
@param b the data to be written.
@exception IOException if an I/O error occurs.
@see java.io.FilterOutputStream#write(byte[], int, int)
Writes <code>b.length</code> bytes to this output stream. <p> The <code>write</code> method of <code>FilterOutputStream</code> calls its <code>write</code> method of three arguments with the arguments <code>b</code>, <code>0</code>, and <code>b.length</code>. <p> Note that this method does not call the one-argument <code>write</code> method of its underlying output stream with the single argument <code>b</code>.
@param b the data to be written. @exception IOException if an I/O error occurs. @see java.io.FilterOutputStream#write(byte[], int, int)