KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > io > Reader

java.io
Class Reader

java.lang.Object
  extended by java.io.Reader
All Implemented Interfaces:
Closeable, Readable
Direct Known Subclasses:
BufferedReader, CharArrayReader, FilterReader, InputStreamReader, PipedReader, StringReader
See Also:
Top Examples, Source Code, LineNumberReader, FileReader, PushbackReader, Writer

public abstract void close()
                    throws IOException
See Also:
Closeable
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected Object lock
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void mark(int readAheadLimit)
          throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean markSupported()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int read()
         throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int read(char[] cbuf)
         throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract int read(char[] cbuf,
                         int off,
                         int len)
                  throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int read(CharBuffer target)
         throws IOException
See Also:
NullPointerException, Readable
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected Reader()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected Reader(Object lock)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean ready()
              throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void reset()
           throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public long skip(long n)
          throws IOException
See Also:
IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags