| java.lang.Object java.io.Reader com.caucho.vfs.i18n.EncodingReader com.caucho.vfs.i18n.ISO8859_1Reader
ISO8859_1Reader | public class ISO8859_1Reader extends EncodingReader (Code) | | Implements an encoding reader for ISO-8859-1
|
Constructor Summary | |
public | ISO8859_1Reader() Null-arg constructor for instantiation by com.caucho.vfs.Encoding only. | public | ISO8859_1Reader(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. |
ISO8859_1Reader | public ISO8859_1Reader()(Code) | | Null-arg constructor for instantiation by com.caucho.vfs.Encoding only.
|
ISO8859_1Reader | public ISO8859_1Reader(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.
|
|
|