Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4060931

JDK1.2 TextArea does not support non-English language

XMLWordPrintable

    • 1.2beta
    • generic
    • solaris_2.5.1
    • Not verified

      In Japanese locale run the attached sample code, you will find the
      TextArea fails to display Japanese string, and no IM bar attached.

      import java.awt.*;
      import java.awt.event.*;
      import java.util.*;

      public class sample {
        public static void main(String args[]) {
          new sample().run();
        }

        Frame fp;
        TextArea ta;
        TextField tf;

        void run() {
              String st = new String("ÃæÔ¢¡¡¤«¤¿¤«¤¤");

              fp = new Frame("Test");
              fp.setLayout(new BorderLayout());
              //fp.add("South", tf = new TextField());
              fp.add("Center", ta = new TextArea());
              ta.setText(st);
              //tf.setFont(new Font("Monospaced", Font.BOLD, 14));

          fp.pack();
          fp.show();
        }
      }
      ~

            nlindenbsunw Norbert Lindenberg (Inactive)
            sherman Xueming Shen
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: