| java.lang.Object java.io.Reader com.caucho.vfs.i18n.EncodingReader com.caucho.vfs.i18n.JAVAReader
JAVAReader | public class JAVAReader extends EncodingReader (Code) | | Implements an encoding reader for the Java (ascii) encoding
|
Constructor Summary | |
public | JAVAReader() Null-arg constructor for instantiation by com.caucho.vfs.Encoding only. | public | JAVAReader(InputStream is) Create an ISO-8859-1 reader based on the readStream. |
Method Summary | |
public Reader | create(InputStream is, String javaEncoding) Create a ISO-8859-1 reader based on the readStream.
Parameters: is - the input stream providing the bytes. Parameters: javaEncoding - the JDK name for the encoding. | public int | read() Reads the next character. | public int | read(char[] buf, int offset, int length) Reads the next character. |
JAVAReader | public JAVAReader()(Code) | | Null-arg constructor for instantiation by com.caucho.vfs.Encoding only.
|
JAVAReader | public JAVAReader(InputStream is)(Code) | | Create an ISO-8859-1 reader based on the readStream.
|
create | public Reader create(InputStream is, String javaEncoding)(Code) | | Create a ISO-8859-1 reader based on the readStream.
Parameters: is - the input stream providing the bytes. Parameters: javaEncoding - the JDK name for the encoding. null, since ReadStream handles this directly. |
read | public int read(char[] buf, int offset, int length) throws IOException(Code) | | Reads the next character.
|
|
|