ByteArrayOutputStream.write

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

@param b the data. @param off the start offset in the data. @param len the number of bytes to write.

  1. alias write = OutputStream.write
  2. void write(int b)
  3. void write(byte[] b, int off, int len)
    class ByteArrayOutputStream
    override
    void
    write
    (
    byte[] b
    ,
    int off
    ,
    int len
    )

Meta