Method readFully(byte[] b, int off, int len)
Return type: void
Member of:
java.io.DataInputStream
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
serverIn.readFully(b,0,4);
2
in.readFully(table, 0, nbytes);
3
in.readFully (v, 0, contentLength); // well we should read this many!
4
inputStream.readFully(trans, 0, chunkLength);
5
dataStream.readFully(curr, 0, bytesPerRow);
6
serverIn.readFully(header,0,hLen);
7
dataStream.readFully(curr, 0, bytesPerRow);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.