-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.1.3, 1.1.4, 1.2.0
-
None
-
x86, sparc
-
solaris_2.5.1, windows_95
Name: rlT66838 Date: 07/16/97
// Try this little application.
// Get chinese text in Label but not TextField and
// TextArea.
// I though this problem was solved in jdk1.1.3
import java.awt.*;
class test
{
public static void main(String args[])
{
new hello();
}
}
class hello extends Frame
{
public hello()
{
super( "Test chinese Characters" );
setLayout( new FlowLayout() );
Font f = new Font("Serif",Font.PLAIN,18);
Label label = new Label("\u51db \u51db");
label.setFont(f);
add(label);
TextField field = new TextField("\u51db \u51db");
field.setFont(f);
add(field);
TextArea area = new TextArea("\u51db \u51db");
area.setFont(f);
add(area);
setSize( 600,300 );
setResizable( true );
setVisible( true );
}
}
======================================================================
This is a duplicate bug
cindy.jao@eng 1998-03-19
- duplicates
-
JDK-4103579 JDK1.2b2(win32) TextArea and TextField do not support non-English
-
- Closed
-