Package java.io
Class DataOutputStream

Public Method write

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

Overrides:

Throws:

void write(int b)

Overrides:

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

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

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

write(int b) method:

Writes the lower eight bits of b to the underlying output stream.