FilterOutputStream.write

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)

  1. void write(int b)
  2. void write(byte[] b)
    class FilterOutputStream
    override
    void
    write
    (
    byte[] b
    )
  3. void write(byte[] b, int off, int len)

Meta