@@ -63,19 +63,19 @@ static boolean SetupI18nProps(LCID lcid, char** language, char** script, char**
63
63
static char *
64
64
getEncodingInternal (LCID lcid )
65
65
{
66
- int codepage ;
66
+ int codepage = 0 ;
67
67
char * ret = malloc (16 );
68
68
if (ret == NULL ) {
69
69
return NULL ;
70
70
}
71
71
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 ,
73
76
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 );
79
79
}
80
80
81
81
switch (codepage ) {
@@ -660,7 +660,6 @@ GetJavaProperties(JNIEnv* env)
660
660
* (which is a Windows LCID value),
661
661
*/
662
662
LCID userDefaultLCID = GetUserDefaultLCID ();
663
- LCID systemDefaultLCID = GetSystemDefaultLCID ();
664
663
LANGID userDefaultUILang = GetUserDefaultUILanguage ();
665
664
LCID userDefaultUILCID = MAKELCID (userDefaultUILang , SORTIDFROMLCID (userDefaultLCID ));
666
665
@@ -693,7 +692,10 @@ GetJavaProperties(JNIEnv* env)
693
692
& sprops .display_variant ,
694
693
& display_encoding );
695
694
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
+ }
697
699
if (LANGIDFROMLCID (userDefaultLCID ) == 0x0c04 && majorVersion == 6 ) {
698
700
// MS claims "Vista has built-in support for HKSCS-2004.
699
701
// All of the HKSCS-2004 characters have Unicode 4.1.
0 commit comments