-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.2.2
-
x86
-
linux
Name: rlT66838 Date: 04/12/2000
java version "1.2.2"
Classic VM (build 1.2.2-L, green threads, nojit)
The OS I use is : TurboLinux 6.0 Chinese version
These bugs prevent me from developing any Java application under TurboLinux
chinese version
1. I creat one awt Label and one swing JLabel with the same chinese string in a
awt Frame. I can read the awt Label in chinese and can only read some small
rectangles from swing label, why they are different.
2. I creat one awt TextField and one swing JTextField. If I set the same chinese
string in both TextFields, both of chinese strings can not be read in
chinese,
text in awt TextField become some unrecognized characters and text in swing
JTextField become some small rectangles. Why they are different?
Another thing is: under chinese input mode, I can input small rectangle into
swing JTextField, and I can not input anything to awt TextField. Why?
The following are source code I use to test this:
//Title: test simple gui
//Version:
//Copyright: Copyright (c) 1998
//Company: Anyware Technology, Inc.
//Description: test simple gui
package simplegui;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class LinuxFrame extends Frame implements WindowListener
{
TextField txtInput = new TextField();
JTextField swingtxtInput = new JTextField();
Label lbl = new Label("\u5173\u4e8e");
JLabel swinglbl = new JLabel("\u5173\u4e8e");
Font font;
public LinuxFrame() {
try {
jbInit();
}
catch (Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
LinuxFrame linuxFrame1 = new LinuxFrame();
linuxFrame1.addWindowListener(linuxFrame1);
linuxFrame1.setTitle("\u5173\u4e8e");
linuxFrame1.setBounds(0, 0, 150, 120);
linuxFrame1.setVisible(true);
}
private void jbInit() throws Exception {
setLayout(new GridLayout(4,1));
this.add(txtInput);
this.add(swingtxtInput);
txtInput.setText("\u4e0b\u4e00\u6b65");
swingtxtInput.setText("\u4e0b\u4e00\u6b65");
this.add(lbl);
this.add(swinglbl);
}
public void windowDeactivated(WindowEvent event)
{
}
public void windowActivated(WindowEvent event)
{
}
public void windowDeiconified(WindowEvent event)
{
}
public void windowIconified(WindowEvent event)
{
}
public void windowClosed(WindowEvent event)
{
}
public void windowClosing(WindowEvent event)
{
System.exit(0);
}
public void windowOpened(WindowEvent event)
{
}
}
(Review ID: 103601)
======================================================================
- duplicates
-
JDK-4346384 Linux: TextArea/TextField can not input/output Chinese on Turbo Linux 6.0 zh
-
- Closed
-