Package java.io
Class DataInputStream

Public Method readFully

final void readFully(byte[] b)

Throws:

final void readFully(byte[] b, int off, 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.