KOutput Stream
Functions
Link copied to clipboard
Writes b.remaining()
bytes from the specified byte array to this output stream.
Writes b.length
bytes from the specified byte array to this output stream. The general contract for write(b)
is that it should have exactly the same effect as the call write(b, 0, b.length)
.
Writes the specified byte to this file output stream. Implements the write method of OutputStream.
Writes len bytes from the specified byte array starting at offset off to this file output stream. Implements the write method of OutputStream.