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();
}
}
======================================================================