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

Cannot set Chinese characters in TextArea and TextField constructors

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.1.3, 1.1.4, 1.2.0
    • client-libs
    • 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

            ssenthilsunw Shanmugam Senthil (Inactive)
            rlewis Roger Lewis (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: