Method read()
Return type: int
Member of:
java.io.InputStreamReader
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
while ((c = fr.read()) != -1) {
2
while( (buf=in.read())!=-1 )
3
assertEquals("The generated test-project-schema.xml was not identical to the expected-project-schema.xml.", outputFileReader.read(), expectedFileReader.read());
4
int n = fr.read();
5
while ((c = fr.read()) != -1)
6
ch = (char) reader.read();
7
int ch = isr.read();
8
inData = inStream.read();
9
int ch = reader.read();
10
while ((c = isr.read()) != -1) {
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.