Package com.aowagie.text.pdf
Class PdfEncodings.Cp437Conversion
- java.lang.Object
-
- com.aowagie.text.pdf.PdfEncodings.Cp437Conversion
-
- All Implemented Interfaces:
ExtraEncoding
- Enclosing class:
- PdfEncodings
private static class PdfEncodings.Cp437Conversion extends java.lang.Object implements ExtraEncoding
-
-
Field Summary
Fields Modifier and Type Field Description private static IntHashtablec2bprivate static char[]table
-
Constructor Summary
Constructors Modifier Constructor Description privateCp437Conversion()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringbyteToChar(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.
-
-
-
Field Detail
-
c2b
private static IntHashtable c2b
-
table
private static final char[] table
-
-
Method Detail
-
charToByte
public byte[] charToByte(java.lang.String text, java.lang.String encoding)Description copied from interface:ExtraEncodingConverts an Unicode string to a byte array according to some encoding.- Specified by:
charToBytein interfaceExtraEncoding- Parameters:
text- the Unicode stringencoding- the requested encoding. It's mainly of use if the same class supports more than one encoding.- Returns:
- the conversion or
nullif no conversion is supported
-
charToByte
public byte[] charToByte(char char1, java.lang.String encoding)Description copied from interface:ExtraEncodingConverts an Unicode char to a byte array according to some encoding.- Specified by:
charToBytein interfaceExtraEncoding- Parameters:
char1- the Unicode charencoding- the requested encoding. It's mainly of use if the same class supports more than one encoding.- Returns:
- the conversion or
nullif no conversion is supported
-
byteToChar
public java.lang.String byteToChar(byte[] b, java.lang.String encoding)Description copied from interface:ExtraEncodingConverts a byte array to an Unicode string according to some encoding.- Specified by:
byteToCharin interfaceExtraEncoding- Parameters:
b- the input byte arrayencoding- the requested encoding. It's mainly of use if the same class supports more than one encoding.- Returns:
- the conversion or
nullif no conversion is supported
-
-