Package java.io
Interface DataOutput

Public Method write

abstract void write(byte[] buf)

Throws:

abstract void write(byte[] buf, int offset, int len)

Throws:

abstract void write(int value)

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

write(byte[] buf) method:

Writes all bytes of buf to the output stream.

write(byte[] buf, int offset, int len) method:

Writes len bytes from buf, starting at offset offset, to the output stream.

write(int value) method:

Writes the lower eight bits of value to the output stream. The 24 higher bits are ignored.