OutputStream.write

Writes <code>b.length</code> bytes from the specified byte array to this output stream. The general contract for <code>write(b)</code> is that it should have exactly the same effect as the call <code>write(b, 0, b.length)</code>.

@param b the data. @exception IOException if an I/O error occurs. @see java.io.OutputStream#write(byte[], int, int)

  1. void write(int b)
  2. void write(string b)
  3. void write(byte[] b)
    class OutputStream
    void
    write
    (
    byte[] b
    )
  4. void write(byte[] b, int off, int len)

Meta