java.io
Class StringReader

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.io.Reader sample code for java.io.Reader definition code for java.io.Reader 
      extended by java.io.StringReader
All Implemented Interfaces:
Closeable sample code for java.io.Closeable definition code for java.io.Closeable , Readable sample code for java.lang.Readable definition code for java.lang.Readable

public class StringReader
extends Reader sample code for java.io.Reader definition code for java.io.Reader

A character stream whose source is a string.

Since:
JDK1.1

Field Summary
 
Fields inherited from class java.io.Reader sample code for java.io.Reader definition code for java.io.Reader
lock sample code for java.io.Reader.lock definition code for java.io.Reader.lock
 
Constructor Summary
StringReader sample code for java.io.StringReader.StringReader(java.lang.String) definition code for java.io.StringReader.StringReader(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  s)
          Create a new string reader.
 
Method Summary
 void close sample code for java.io.StringReader.close() definition code for java.io.StringReader.close() ()
          Close the stream.
 void mark sample code for java.io.StringReader.mark(int) definition code for java.io.StringReader.mark(int) (int readAheadLimit)
          Mark the present position in the stream.
 boolean markSupported sample code for java.io.StringReader.markSupported() definition code for java.io.StringReader.markSupported() ()
          Tell whether this stream supports the mark() operation, which it does.
 int read sample code for java.io.StringReader.read() definition code for java.io.StringReader.read() ()
          Read a single character.
 int read sample code for java.io.StringReader.read(char[], int, int) definition code for java.io.StringReader.read(char[], int, int) (char[] cbuf, int off, int len)
          Read characters into a portion of an array.
 boolean ready sample code for java.io.StringReader.ready() definition code for java.io.StringReader.ready() ()
          Tell whether this stream is ready to be read.
 void reset sample code for java.io.StringReader.reset() definition code for java.io.StringReader.reset() ()
          Reset the stream to the most recent mark, or to the beginning of the string if it has never been marked.
 long skip sample code for java.io.StringReader.skip(long) definition code for java.io.StringReader.skip(long) (long ns)
          Skips the specified number of characters in the stream.
 
Methods inherited from class java.io.Reader sample code for java.io.Reader definition code for java.io.Reader
read sample code for java.io.Reader.read(char[]) definition code for java.io.Reader.read(char[]) , read sample code for java.io.Reader.read(java.nio.CharBuffer) definition code for java.io.Reader.read(java.nio.CharBuffer)
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , toString sample code for java.lang.Object.toString() definition code for java.lang.Object.toString() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

StringReader sample code for java.io.StringReader(java.lang.String) definition code for java.io.StringReader(java.lang.String)

public StringReader(String sample code for java.lang.String definition code for java.lang.String  s)
Create a new string reader.

Parameters:
s - String providing the character stream.
Method Detail

read sample code for java.io.StringReader.read() definition code for java.io.StringReader.read()

public int read()
         throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Read a single character.

Overrides:
read sample code for java.io.Reader.read() definition code for java.io.Reader.read() in class Reader sample code for java.io.Reader definition code for java.io.Reader
Returns:
The character read, or -1 if the end of the stream has been reached
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - If an I/O error occurs

read sample code for java.io.StringReader.read(char[], int, int) definition code for java.io.StringReader.read(char[], int, int)

public int read(char[] cbuf,
                int off,
                int len)
         throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Read characters into a portion of an array.

Specified by:
read sample code for java.io.Reader.read(char[], int, int) definition code for java.io.Reader.read(char[], int, int) in class Reader sample code for java.io.Reader definition code for java.io.Reader
Parameters:
cbuf - Destination buffer
off - Offset at which to start writing characters
len - Maximum number of characters to read
Returns:
The number of characters read, or -1 if the end of the stream has been reached
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - If an I/O error occurs

skip sample code for java.io.StringReader.skip(long) definition code for java.io.StringReader.skip(long)

public long skip(long ns)
          throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Skips the specified number of characters in the stream. Returns the number of characters that were skipped.

The ns parameter may be negative, even though the skip method of the Reader sample code for java.io.Reader definition code for java.io.Reader superclass throws an exception in this case. Negative values of ns cause the stream to skip backwards. Negative return values indicate a skip backwards. It is not possible to skip backwards past the beginning of the string.

If the entire string has been read or skipped, then this method has no effect and always returns 0.

Overrides:
skip sample code for java.io.Reader.skip(long) definition code for java.io.Reader.skip(long) in class Reader sample code for java.io.Reader definition code for java.io.Reader
Parameters:
ns - The number of characters to skip
Returns:
The number of characters actually skipped
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - If an I/O error occurs

ready sample code for java.io.StringReader.ready() definition code for java.io.StringReader.ready()

public boolean ready()
              throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Tell whether this stream is ready to be read.

Overrides:
ready sample code for java.io.Reader.ready() definition code for java.io.Reader.ready() in class Reader sample code for java.io.Reader definition code for java.io.Reader
Returns:
True if the next read() is guaranteed not to block for input
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - If the stream is closed

markSupported sample code for java.io.StringReader.markSupported() definition code for java.io.StringReader.markSupported()

public boolean markSupported()
Tell whether this stream supports the mark() operation, which it does.

Overrides:
markSupported sample code for java.io.Reader.markSupported() definition code for java.io.Reader.markSupported() in class Reader sample code for java.io.Reader definition code for java.io.Reader
Returns:
true if and only if this stream supports the mark operation.

mark sample code for java.io.StringReader.mark(int) definition code for java.io.StringReader.mark(int)

public void mark(int readAheadLimit)
          throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Mark the present position in the stream. Subsequent calls to reset() will reposition the stream to this point.

Overrides:
mark sample code for java.io.Reader.mark(int) definition code for java.io.Reader.mark(int) in class Reader sample code for java.io.Reader definition code for java.io.Reader
Parameters:
readAheadLimit - Limit on the number of characters that may be read while still preserving the mark. Because the stream's input comes from a string, there is no actual limit, so this argument must not be negative, but is otherwise ignored.
Throws:
IllegalArgumentException sample code for java.lang.IllegalArgumentException definition code for java.lang.IllegalArgumentException - If readAheadLimit is < 0
IOException sample code for java.io.IOException definition code for java.io.IOException - If an I/O error occurs

reset sample code for java.io.StringReader.reset() definition code for java.io.StringReader.reset()

public void reset()
           throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Reset the stream to the most recent mark, or to the beginning of the string if it has never been marked.

Overrides:
reset sample code for java.io.Reader.reset() definition code for java.io.Reader.reset() in class Reader sample code for java.io.Reader definition code for java.io.Reader
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - If an I/O error occurs

close sample code for java.io.StringReader.close() definition code for java.io.StringReader.close()

public void close()
Close the stream.

Specified by:
close sample code for java.io.Closeable.close() definition code for java.io.Closeable.close() in interface Closeable sample code for java.io.Closeable definition code for java.io.Closeable
Specified by:
close sample code for java.io.Reader.close() definition code for java.io.Reader.close() in class Reader sample code for java.io.Reader definition code for java.io.Reader