Method read(byte[] b, int off, int len)
Return type: int
Member of: java.io.BufferedInputStream
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 while ( (bis.read(b, 0, 256)) != -1)
2 int count = in.read(buf, 0, 3);
3 int size = bis.read( buffer, 0, 4096 );
4 while ( (len = fin.read(buf,0,1024)) > 0) {
5 in.read(imageData, 0, (int)fo.getSize());
6 (length = in.read(bytes, 0, bytes.length)) != -1;
7 while ((count= contentStream.read(readBuffer, 0, chunkSize)) != -1)
8 while (in.read(buffer, 0, in.available()) > 0) {
9 int count = f.read(buf, pos, length-pos);
10 readlen = read(buffer, offset, buffer.length-offset);
11 while( ( len = m_inputStream.read( buf, readThusFar, buflen - readThusFar ) ) != -1
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.