private static class PdfEncodings.SymbolConversion extends Object implements ExtraEncoding
| Modifier and Type | Field and Description |
|---|---|
private static IntHashtable |
t1 |
private static IntHashtable |
t2 |
private static char[] |
table1 |
private static char[] |
table2 |
private IntHashtable |
translation |
| Constructor and Description |
|---|
PdfEncodings.SymbolConversion(boolean symbol) |
| Modifier and Type | Method and Description |
|---|---|
String |
byteToChar(byte[] b,
String encoding)
Converts a byte array to an Unicode string according to some encoding.
|
byte[] |
charToByte(char char1,
String encoding)
Converts an Unicode char to a byte array according to some encoding.
|
byte[] |
charToByte(String text,
String encoding)
Converts an Unicode string to a byte array according to some encoding.
|
private static final IntHashtable t1
private static final IntHashtable t2
private IntHashtable translation
private static final char[] table1
private static final char[] table2
public byte[] charToByte(String text, String encoding)
ExtraEncodingcharToByte in interface ExtraEncodingtext - the Unicode stringencoding - the requested encoding. It's mainly of use if the same class
supports more than one encoding.null if no conversion is supportedpublic byte[] charToByte(char char1,
String encoding)
ExtraEncodingcharToByte in interface ExtraEncodingchar1 - the Unicode charencoding - the requested encoding. It's mainly of use if the same class
supports more than one encoding.null if no conversion is supportedpublic String byteToChar(byte[] b, String encoding)
ExtraEncodingbyteToChar in interface ExtraEncodingb - the input byte arrayencoding - the requested encoding. It's mainly of use if the same class
supports more than one encoding.null if no conversion is supported