Skip to content

Commit 2293448

Browse files
committedMay 5, 2022
8272352: Java launcher can not parse Chinese character when system locale is set to UTF-8
Reviewed-by: rriggs
1 parent 1bba640 commit 2293448

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed
 

‎src/java.base/windows/native/libjava/java_props_md.c

+11-9
Original file line numberDiff line numberDiff line change
@@ -63,19 +63,19 @@ static boolean SetupI18nProps(LCID lcid, char** language, char** script, char**
6363
static char *
6464
getEncodingInternal(LCID lcid)
6565
{
66-
int codepage;
66+
int codepage = 0;
6767
char * ret = malloc(16);
6868
if (ret == NULL) {
6969
return NULL;
7070
}
7171

72-
if (GetLocaleInfo(lcid,
72+
if (lcid == 0) { // for sun.jnu.encoding
73+
codepage = GetACP();
74+
_itoa_s(codepage, ret + 2, 14, 10);
75+
} else if (GetLocaleInfo(lcid,
7376
LOCALE_IDEFAULTANSICODEPAGE,
74-
ret+2, 14) == 0) {
75-
codepage = 1252;
76-
strcpy(ret+2, "1252");
77-
} else {
78-
codepage = atoi(ret+2);
77+
ret + 2, 14) != 0) {
78+
codepage = atoi(ret + 2);
7979
}
8080

8181
switch (codepage) {
@@ -660,7 +660,6 @@ GetJavaProperties(JNIEnv* env)
660660
* (which is a Windows LCID value),
661661
*/
662662
LCID userDefaultLCID = GetUserDefaultLCID();
663-
LCID systemDefaultLCID = GetSystemDefaultLCID();
664663
LANGID userDefaultUILang = GetUserDefaultUILanguage();
665664
LCID userDefaultUILCID = MAKELCID(userDefaultUILang, SORTIDFROMLCID(userDefaultLCID));
666665

@@ -693,7 +692,10 @@ GetJavaProperties(JNIEnv* env)
693692
&sprops.display_variant,
694693
&display_encoding);
695694

696-
sprops.sun_jnu_encoding = getEncodingInternal(systemDefaultLCID);
695+
sprops.sun_jnu_encoding = getEncodingInternal(0);
696+
if (sprops.sun_jnu_encoding == NULL) {
697+
sprops.sun_jnu_encoding = "UTF-8";
698+
}
697699
if (LANGIDFROMLCID(userDefaultLCID) == 0x0c04 && majorVersion == 6) {
698700
// MS claims "Vista has built-in support for HKSCS-2004.
699701
// All of the HKSCS-2004 characters have Unicode 4.1.

0 commit comments

Comments
 (0)
Please sign in to comment.