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

showing a Frame freezes native application in JNI.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.1.4
    • 1.1.3
    • hotspot
    • 1.1.4
    • x86
    • windows_nt
    • Not verified



      Name: rlT66838 Date: 08/13/97


      The problem started showing up in JDK1.1.2 and
      it still is in JDK1.1.3 but work in 1.1.1. I have
      a Win32 app that calls Java using JNI. Everything
      worked perfect until a Frame tries to show() itself. The
      native app and the java VM freeze. BTW, all other
      (and there are many) JNI calls work perfectly.

      To reproduce,

      - Create a native win32 app.
      - Attempt to instantiate this class:

      package COM.novusnet.cogent.java.objectgenerator;

      import java.awt.*;
      import java.awt.event.*;
      import java.io.*;

      public class RedirectedFrame extends Frame
      {
         TextArea myTextArea = null;

         RedirectedFrame()
         {
           super("Java Console");

           myTextArea = new TextArea();

           setSize(300,300);
           setLayout(new BorderLayout());
           add("Center" , myTextArea);
           validate();
           show();
         }
      }





      ======================================================================

            sliangsunw Sheng Liang (Inactive)
            rlewis Roger Lewis (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: