| 
 | BEA Systems, Inc. | |||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||||
java.lang.Objectjava.io.Reader
weblogic.apache.xerces.impl.io.ASCIIReader
A simple ASCII byte reader. This is an optimized reader for reading byte streams that only contain 7-bit ASCII characters.
| Field Summary | |
| static int | DEFAULT_BUFFER_SIZEDeprecated. Default byte buffer size (2048). | 
| protected  byte[] | fBufferDeprecated. Byte buffer. | 
| protected  InputStream | fInputStreamDeprecated. Input stream. | 
| Fields inherited from class java.io.Reader | 
| lock | 
| Constructor Summary | |
| ASCIIReader(InputStream inputStream,
            int size,
            MessageFormatter messageFormatter,
            Locale locale)Deprecated. Constructs an ASCII reader from the specified input stream and buffer size. | |
| ASCIIReader(InputStream inputStream,
            MessageFormatter messageFormatter,
            Locale locale)Deprecated. Constructs an ASCII reader from the specified input stream using the default buffer size. | |
| Method Summary | |
|  void | close()Deprecated. Close the stream. | 
|  void | mark(int readAheadLimit)Deprecated. Mark the present position in the stream. | 
|  boolean | markSupported()Deprecated. Tell whether this stream supports the mark() operation. | 
|  int | read()Deprecated. Read a single character. | 
|  int | read(char[] ch,
     int offset,
     int length)Deprecated. Read characters into a portion of an array. | 
|  boolean | ready()Deprecated. Tell whether this stream is ready to be read. | 
|  void | reset()Deprecated. Reset the stream. | 
|  long | skip(long n)Deprecated. Skip characters. | 
| Methods inherited from class java.io.Reader | 
| read, read | 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Field Detail | 
public static final int DEFAULT_BUFFER_SIZE
protected byte[] fBuffer
protected InputStream fInputStream
| Constructor Detail | 
public ASCIIReader(InputStream inputStream,
                   int size,
                   MessageFormatter messageFormatter,
                   Locale locale)
public ASCIIReader(InputStream inputStream,
                   MessageFormatter messageFormatter,
                   Locale locale)
| Method Detail | 
public void close()
           throws IOException
IOException - If an I/O error occurs
public void mark(int readAheadLimit)
          throws IOException
readAheadLimit - Limit on the number of characters that may be
                         read while still preserving the mark.  After
                         reading this many characters, attempting to
                         reset the stream may fail.
IOException - If the stream does not support mark(),
                          or if some other I/O error occurspublic boolean markSupported()
public int read()
         throws IOException
Subclasses that intend to support efficient single-character input should override this method.
IOException - If an I/O error occurs
public int read(char[] ch,
                int offset,
                int length)
         throws IOException
ch - Destination bufferoffset - Offset at which to start storing characterslength - Maximum number of characters to read
IOException - If an I/O error occurs
public boolean ready()
              throws IOException
IOException - If an I/O error occurs
public void reset()
           throws IOException
IOException - If the stream has not been marked,
                          or if the mark has been invalidated,
                          or if the stream does not support reset(),
                          or if some other I/O error occurs
public long skip(long n)
          throws IOException
n - The number of characters to skip
IOException - If an I/O error occurs| 
 | Documentation is available at http://download.oracle.com/docs/cd/E13222_01/wls/docs91 Copyright 2005 BEA Systems Inc. | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||