com.healthmarketscience.jackcess.scsu |
|
Java Source File Name | Type | Comment |
Debug.java | Class | A number of helpful output routines for debugging. |
EndOfInputException.java | Class | |
Expand.java | Class | Reference decoder for the Standard Compression Scheme for Unicode (SCSU)
Notes on the Java implementation
A limitation of Java is the exclusive use of a signed byte data type.
The following work arounds are required:
Copying a byte to an integer variable and adding 256 for 'negative'
bytes gives an integer in the range 0-255.
Values of char are between 0x0000 and 0xFFFF in Java. |
IllegalInputException.java | Class | |
SCSU.java | Class | Encoding text data in Unicode often requires more storage than using
an existing 8-bit character set and limited to the subset of characters
actually found in the text. |