Method read(byte[] b, int off, int len)
Return type: int
Member of:
java.io.FileInputStream
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
inputis.read(buff, 0, 400);
2
if (in.read(buf,0,10)==10)
3
int expLength = eis.read(expBuff, 0, 8192);
4
int bytesRead = fin.read(input, 0, bytesAvailable);
5
int bytesRead = fin.read(input, 0, bytesAvailable);
6
int len=scan.read(buffer,0,filesize);
7
in.read(buffer, 0, size);
8
count = iStream.read(byteBuffer, 0, byteBuffer.length);
9
int l = in.read(b, 0, COPY_BLOCK_SIZE);
10
total += fi.read(classData, total,
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.