Package java.io
Interface DataInput

Public Method readFully

abstract void readFully(byte[] buf)

Throws:

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

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

readFully(byte[] buf) method:

Reads b.length bytes from the input stream and stores them in buf.

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

Reads len bytes into the buffer buf, starting at the buffer-offset offset.