com.lowagie.text.pdf
private static class PdfEncodings.Cp437Conversion extends java.lang.Object implements ExtraEncoding
Modifier and Type | Field and Description |
---|---|
private static IntHashtable |
c2b |
private static char[] |
table |
Modifier | Constructor and Description |
---|---|
private |
PdfEncodings.Cp437Conversion() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
byteToChar(byte[] b,
java.lang.String encoding)
Converts a byte array to an Unicode string according to some encoding.
|
byte[] |
charToByte(char char1,
java.lang.String encoding)
Converts an Unicode char to a byte array according to some encoding.
|
byte[] |
charToByte(java.lang.String text,
java.lang.String encoding)
Converts an Unicode string to a byte array according to some encoding.
|
private static IntHashtable c2b
private static final char[] table
public byte[] charToByte(java.lang.String text, java.lang.String encoding)
ExtraEncoding
charToByte
in interface ExtraEncoding
text
- 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, java.lang.String encoding)
ExtraEncoding
charToByte
in interface ExtraEncoding
char1
- 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 java.lang.String byteToChar(byte[] b, java.lang.String encoding)
ExtraEncoding
byteToChar
in interface ExtraEncoding
b
- 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