-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.4.1
-
x86
-
windows_2000
Name: jk109818 Date: 05/07/2003
FULL PRODUCT VERSION :
java version "1.4.1_02"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_02-b06)
Java HotSpot(TM) Client VM (build 1.4.1_02-b06, mixed mode)
FULL OS VERSION :
Microsoft Windows 2000 [Version 5.00.2195]
(C) Copyright 1985-2000 Microsoft Corp.
A DESCRIPTION OF THE PROBLEM :
When attempting to display japanese characters on a US system, the characters show up as boxes. However, this only occurs when using the Windows look and feel. Under the Metal look and feel, they display just fine with my setup. I've made the following additions to my font.properties file in order to have the Arial Unicode font used in addition to the standard fonts:
filename.Arial_Unicode_MS=Arialuni.TTF
dialog.italic.3=Arial Unicode MS,ANSI_CHARSET
dialoginput.3=Arial Unicode MS,ANSI_CHARSET
serif.bold.3=Arial Unicode MS,ANSI_CHARSET
sansserif.italic.3=Arial Unicode MS,ANSI_CHARSET
sansserif.bold.3=Arial Unicode MS,ANSI_CHARSET
serif.3=Arial Unicode MS,ANSI_CHARSET
dialoginput.bolditalic.3=Arial Unicode MS,ANSI_CHARSET
serif.bolditalic.3=Arial Unicode MS,ANSI_CHARSET
sansserif.bolditalic.3=Arial Unicode MS,ANSI_CHARSET
dialog.3=Arial Unicode MS,ANSI_CHARSET
serif.italic.3=Arial Unicode MS,ANSI_CHARSET
sansserif.3=Arial Unicode MS,ANSI_CHARSET
dialoginput.bold.3=Arial Unicode MS,ANSI_CHARSET
dialog.bolditalic.3=Arial Unicode MS,ANSI_CHARSET
dialoginput.italic.3=Arial Unicode MS,ANSI_CHARSET
dialog.bold.3=Arial Unicode MS,ANSI_CHARSET
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Run the attached test case and you will see the boxes. Comment out the line that sets the look and feel and run it again, the correct japanese characters show up as expected.
EXPECTED VERSUS ACTUAL BEHAVIOR :
I was expecting the correct japanese characters to appear.
Each character was represented as a box, indicating that the glyph could not be found.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.util.Locale;
import javax.swing.JOptionPane;
import javax.swing.UIManager;
public class Test
{
public static void main( String[] args )
{
try {
Locale.setDefault( new Locale( "ja", "JP" ) );
UIManager.setLookAndFeel( UIManager.getSystemLookAndFeelClassName() );
JOptionPane.showConfirmDialog( null, "Message", "title",
JOptionPane.YES_NO_OPTION );
}
catch ( Exception e ) {
e.printStackTrace();
}
finally {
System.exit( 0 );
}
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
None that I have found as of yet.
(Review ID: 183900)
======================================================================
- duplicates
-
JDK-4624547 RFE: internal private API to specify logical fallback font for physical fonts
-
- Resolved
-