FileOutputStream.write

Writes <code>len</code> bytes from the specified byte array starting at offset <code>off</code> to this file output stream.

@param b the data. @param off the start offset in the data. @param len the number of bytes to write. @exception IOException if an I/O error occurs.

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

Meta