java.io
Class BufferedReader

java.lang.Object
  extended by java.io.Reader
      extended by java.io.BufferedReader


public class BufferedReader
extends Reader


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

Constructor Detail

BufferedReader

public BufferedReader(Reader in)

BufferedReader

public BufferedReader(Reader in,
                      int size)
Method Detail

close

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

mark

public void mark(int readlimit)
Overrides:
mark in class Reader

markSupported

public boolean markSupported()
Overrides:
markSupported in class Reader

read

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

read

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

readLine

public String readLine()
                throws IOException
Throws:
IOException

reset

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

skip

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