- Added support for the Korean character set MS949. Thanks again to Ralf Terdic <ralf.t@gmx.net>!

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353659 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rainer Klute 2005-04-29 16:58:55 +00:00
parent 8b1e706aeb
commit 7cd8cd011c
2 changed files with 9 additions and 4 deletions

View File

@ -14,6 +14,9 @@ public class Constants
/** <p>Codepage for SJIS</p> */ /** <p>Codepage for SJIS</p> */
public static final int CP_SJIS = 932; public static final int CP_SJIS = 932;
/** <p>Codepage for MS949</p> */
public static final int CP_MS949 = 949;
/** <p>Codepage for UTF-16</p> */ /** <p>Codepage for UTF-16</p> */
public static final int CP_UTF16 = 1200; public static final int CP_UTF16 = 1200;

View File

@ -294,6 +294,12 @@ public class VariantSupport extends Variant
("Codepage number may not be " + codepage); ("Codepage number may not be " + codepage);
switch (codepage) switch (codepage)
{ {
case Constants.CP_UTF16:
return "UTF-16";
case Constants.CP_UTF8:
return "UTF-8";
case Constants.CP_MS949:
return "ms949";
case Constants.CP_MAC_ROMAN: case Constants.CP_MAC_ROMAN:
return "MacRoman"; return "MacRoman";
case Constants.CP_MAC_JAPAN: case Constants.CP_MAC_JAPAN:
@ -328,10 +334,6 @@ public class VariantSupport extends Variant
return "MacCroatian"; return "MacCroatian";
case Constants.CP_SJIS: case Constants.CP_SJIS:
return "SJIS"; return "SJIS";
case Constants.CP_UTF16:
return "UTF-16";
case Constants.CP_UTF8:
return "UTF-8";
default: default:
return "cp" + codepage; return "cp" + codepage;
} }