public enum CodePages extends Enum<CodePages>
Available codepages
| Enum Constant and Description |
|---|
Arabic
Arabic language - Windows 1256
|
ArabicDos
IBM CP 864 - Arabic DOS
|
ArabicIso
Arabic ISO - ISO 8859-6 - Latin/Arabic
|
Baltic
Baltic language - Windows 1257
|
BalticIso
Baltic ISO - ISO 8859-4
|
CentralEurope
Central europe language - Windows 1250
|
CentralEuropeanDos
IBM CP 852 - Central European DOS
|
CentralEuropeanIso
Central Europe - ISO 8859-2 - Latin-2
|
Cyrillic
Cyrillic language - Windows 1251
|
CyrillicDos
IBM CP 855 - Cyrillic DOS
|
CyrillicDos866
IBM CP 866 - Cyrillic DOS
|
CyrillicIso
Cyrillic ISO - ISO 8859-5 - Latin/Cyrillic
|
Default
The default code page - undefined, use system encoding
|
English
English language - Windows 1252
|
FrenchCanadaDos
IBM CP 863 - French Canadian DOS
|
Greek
Greek language - Windows 1253
|
GreekIso
Greek ISO - ISO 8859-7
|
GreekModernDos
IBM CP 869 - Greek Modern (2) DOS
|
Hebrew
Hebrew language - Windows 1255
|
HebrewIso
Hebrew ISO - ISO 8859-8
|
IcelandicDos
IBM CP 861 - Icelandic DOS
|
Japanese
Japanese language - Windows 932
|
JapaneseDos
IBM CP 932 - Japanese - JIS X 0201:1976 + JIS X 0208:1983
|
Korean
Korean language - Windows 949
|
KoreanJohab
Korean Johab
|
KoreanJohabWin
Korean Johab Windows (=Windows 1361)
|
KoreanKsc5601
Korean KS C 5601-1987
|
Latin3Iso
ISO Latin 3 - ISO 8859-3
|
Latin5Iso
Latin 5 - ISO 8859-9
|
MacintoshRoman
Apple Standard Roman (=Windows 10000)
|
NordicDos
IBM CP 865 - Nordic DOS
|
OemUs
IBM CP 437 - OEM US
|
PortugeseDos
IBM CP 860 - Portugese DOS
|
SimpChinese
Simple chinese language - Windows 936
|
SimpChineseOtherGb2312
Simplified Chinese GB2312
|
Thai
Thai language - Windows 874
|
TradChinese
Traditional chinese language - Windows 950
|
TradChineseBig5
Original Big5
|
Turkish
Turkish language - Windows 1254
|
TurkishDos
IBM CP 857 - Turkish DOS
|
UsAscii
US-ASCII
|
Utf16
Unicode UTF-16 (=Windows 1200)
|
Utf8
Unicode UTF-8 (=Windows 65001)
|
Vietnam
Vietnam language - Windows 1258
|
WesternEuropeanDos
IBM CP 850 - Wester European DOS
|
WesternEuropeanIso
Western Europe - ISO 8859-1 - Latin-1
|
| Modifier and Type | Method and Description |
|---|---|
static CodePages |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CodePages[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodePages Default
The default code page - undefined, use system encoding
public static final CodePages Thai
Thai language - Windows 874
public static final CodePages Japanese
Japanese language - Windows 932
public static final CodePages SimpChinese
Simple chinese language - Windows 936
public static final CodePages Korean
Korean language - Windows 949
public static final CodePages TradChinese
Traditional chinese language - Windows 950
public static final CodePages CentralEurope
Central europe language - Windows 1250
public static final CodePages Cyrillic
Cyrillic language - Windows 1251
public static final CodePages English
English language - Windows 1252
public static final CodePages Greek
Greek language - Windows 1253
public static final CodePages Turkish
Turkish language - Windows 1254
public static final CodePages Hebrew
Hebrew language - Windows 1255
public static final CodePages Arabic
Arabic language - Windows 1256
public static final CodePages Baltic
Baltic language - Windows 1257
public static final CodePages Vietnam
Vietnam language - Windows 1258
public static final CodePages WesternEuropeanIso
Western Europe - ISO 8859-1 - Latin-1
public static final CodePages CentralEuropeanIso
Central Europe - ISO 8859-2 - Latin-2
public static final CodePages Latin3Iso
ISO Latin 3 - ISO 8859-3
public static final CodePages BalticIso
Baltic ISO - ISO 8859-4
public static final CodePages CyrillicIso
Cyrillic ISO - ISO 8859-5 - Latin/Cyrillic
public static final CodePages ArabicIso
Arabic ISO - ISO 8859-6 - Latin/Arabic
public static final CodePages GreekIso
Greek ISO - ISO 8859-7
public static final CodePages HebrewIso
Hebrew ISO - ISO 8859-8
public static final CodePages Latin5Iso
Latin 5 - ISO 8859-9
public static final CodePages UsAscii
US-ASCII
public static final CodePages OemUs
IBM CP 437 - OEM US
public static final CodePages WesternEuropeanDos
IBM CP 850 - Wester European DOS
public static final CodePages CentralEuropeanDos
IBM CP 852 - Central European DOS
public static final CodePages CyrillicDos
IBM CP 855 - Cyrillic DOS
public static final CodePages TurkishDos
IBM CP 857 - Turkish DOS
public static final CodePages PortugeseDos
IBM CP 860 - Portugese DOS
public static final CodePages IcelandicDos
IBM CP 861 - Icelandic DOS
public static final CodePages FrenchCanadaDos
IBM CP 863 - French Canadian DOS
public static final CodePages ArabicDos
IBM CP 864 - Arabic DOS
public static final CodePages NordicDos
IBM CP 865 - Nordic DOS
public static final CodePages GreekModernDos
IBM CP 869 - Greek Modern (2) DOS
public static final CodePages JapaneseDos
IBM CP 932 - Japanese - JIS X 0201:1976 + JIS X 0208:1983
public static final CodePages MacintoshRoman
Apple Standard Roman (=Windows 10000)
public static final CodePages TradChineseBig5
Original Big5
public static final CodePages KoreanKsc5601
Korean KS C 5601-1987
public static final CodePages KoreanJohab
Korean Johab
public static final CodePages CyrillicDos866
IBM CP 866 - Cyrillic DOS
public static final CodePages SimpChineseOtherGb2312
Simplified Chinese GB2312
public static final CodePages KoreanJohabWin
Korean Johab Windows (=Windows 1361)
public static final CodePages Utf16
Unicode UTF-16 (=Windows 1200)
public static final CodePages Utf8
Unicode UTF-8 (=Windows 65001)
public static CodePages[] values()
for (CodePages c : CodePages.values()) System.out.println(c);
public static CodePages valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.