"

2013 FRC Java API

"

Uses of Class
java.io.Reader

Packages that use Reader
com.sun.cldc.i18n   
com.sun.cldc.i18n.j2me   
com.sun.squawk.io Provides classes from MIDP or unsupportable optional JSRs that are usually in javax.microedition.io, but are not legally in IMP. 
com.sun.squawk.util Provides classes for basic utilities sometimes found in JSE (LineReader, unsynchronized Vectors, Math utilities, etc.) 
java.io Provides classes for input and output through data streams. 
 

Uses of Reader in com.sun.cldc.i18n
 

Subclasses of Reader in com.sun.cldc.i18n
 class StreamReader
          General prototype for character converting stream readers.
 

Methods in com.sun.cldc.i18n that return Reader
static Reader Helper.getStreamReader(InputStream is)
          Get a reader for an InputStream
static Reader Helper.getStreamReader(InputStream is, String name)
          Get a reader for an InputStream
 Reader StreamReader.open(InputStream in, String enc)
          Open the reader
 

Uses of Reader in com.sun.cldc.i18n.j2me
 

Subclasses of Reader in com.sun.cldc.i18n.j2me
 class ISO8859_1_Reader
          Default class reading input streams
 

Uses of Reader in com.sun.squawk.io
 

Subclasses of Reader in com.sun.squawk.io
 class BufferedReader
          Read text from a character-input stream, buffering characters so as to provide for the efficient reading of characters, arrays, and lines.
 

Constructors in com.sun.squawk.io with parameters of type Reader
BufferedReader(Reader in)
          Create a buffering character-input stream that uses a default-sized input buffer.
BufferedReader(Reader in, int sz)
          Create a buffering character-input stream that uses an input buffer of the specified size.
 

Uses of Reader in com.sun.squawk.util
 

Constructors in com.sun.squawk.util with parameters of type Reader
LineReader(Reader reader)
          Creates a new LineReader to parse the lines from a given Reader.
 

Uses of Reader in java.io
 

Subclasses of Reader in java.io
 class InputStreamReader
          An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and translates them into characters.
 


"

2013 FRC Java API

"

"
For updated information see the Java FRC site
"