Method read(char[] cbuf, int off, int len)
Return type: int
Member of: java.io.BufferedReader
[api documentation ] [ main menu]

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

1 while ((len = reader.read(cbuf, 0, 1000)) != -1) {
2 while ( ( len = reader.read( buf, 0, 1024 )) != -1)
3 actual = reader.read(buffer, 0, 2048);
4 in.read(buf, 0, 3);
5 theReader.read(buff,0,bytes);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.