Package org.apache.poi.util
Class LittleEndianCP950Reader
- java.lang.Object
-
- java.io.Reader
-
- org.apache.poi.util.LittleEndianCP950Reader
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
,java.lang.Readable
@Internal public class LittleEndianCP950Reader extends java.io.Reader
Stream that converts CP950 (MSOffice's dialect of Big5), with zero-byte padding for ASCII and in LittleEndianOrder.
-
-
Constructor Summary
Constructors Constructor Description LittleEndianCP950Reader(byte[] data)
LittleEndianCP950Reader(byte[] data, int offset, int length)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
int
read()
int
read(char[] cbuf, int off, int len)
-
-
-
Method Detail
-
read
public int read()
- Overrides:
read
in classjava.io.Reader
-
read
public int read(char[] cbuf, int off, int len) throws java.io.IOException
- Specified by:
read
in classjava.io.Reader
- Throws:
java.io.IOException
-
close
public void close()
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Specified by:
close
in classjava.io.Reader
-
-