java.io
Class BufferedReader

java.lang.Object
  |
  +--java.io.Reader
        |
        +--java.io.BufferedReader
Direct Known Subclasses:
LineNumberReader

public synchronized class BufferedReader
extends Reader


Field Summary
 
Fields inherited from class java.io.Reader
lock
 
Constructor Summary
BufferedReader(Reader)
           
BufferedReader(Reader, int)
           
 
Method Summary
 void close()
           
 void mark(int)
           
 boolean markSupported()
           
 int read()
           
 int read(char[], int, int)
           
 String readLine()
           
 boolean ready()
           
 void reset()
           
 long skip(long)
           
 
Methods inherited from class java.io.Reader
read
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait
 

Constructor Detail

BufferedReader

public BufferedReader(Reader,
                      int)

BufferedReader

public BufferedReader(Reader)
Method Detail

read

public int read()
         throws IOException
Overrides:
read in class Reader
IOException

read

public int read(char[],
                int,
                int)
         throws IOException
Specified by:
read in class Reader
IOException

readLine

public String readLine()
                throws IOException
IOException

skip

public long skip(long)
          throws IOException
Overrides:
skip in class Reader
IOException

ready

public boolean ready()
              throws IOException
Overrides:
ready in class Reader
IOException

markSupported

public boolean markSupported()
Overrides:
markSupported in class Reader

mark

public void mark(int)
          throws IOException
Overrides:
mark in class Reader
IOException

reset

public void reset()
           throws IOException
Overrides:
reset in class Reader
IOException

close

public void close()
           throws IOException
Specified by:
close in class Reader
IOException