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

JDK1.1.3A crashed on Win32 when running Japanese test case, yes, it comes again

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P1 P1
    • 1.1.3
    • 1.1.3
    • client-libs
    • b01
    • x86
    • windows_95
    • Not verified

      The problem here is when you tend to display an undefined character which
      is usually printed by using default.char, the VM crached, the problem
      does not occur when the awt component is TextField and TextArea.

      The test code I used is as following:


      import java.awt.*;

      public class sample {
              static String hexConst = "0123456789ABCDEF";

              public static void main( String[] args ) {
                      createa();
              }

              static private String getString(int higher) {
                      char charr[];
                      String css;

                      charr = new char[8];

                      for(int j = 0; j < 8; j++) {
                              charr[j] = (char)(higher + j);
                              //charr[j * 2 + 1] = ' ';
                      }
                      return new String(charr);
              }

              static void createa () {

                      Frame a=new Frame("Test");
                      a.setLayout(new BorderLayout());
                      a.add("Center", new TextArea(getString(0x3000))); //"ÂæÏÑ");

                      a.add("South", new Label(getString(0x3000)));
                      //a.add("North", new Button("Ë̵þ"));
                      a.pack();
                      a.show();
              }
      }






            joconnersunw John Oconner (Inactive)
            sherman Xueming Shen
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: