-
Bug
-
Resolution: Duplicate
-
P2
-
None
-
1.3.0
-
x86
-
windows_98
The FileDialog can be brought up OK but upon hitting the button "Cancel"
or "Open" the win'98 on a laptop PC screen locks up and the system froze.
On a Dell PC also running win'98, it displays the following error message: "
#
# HotSpot Virtual Machine Error, EXCEPTION_ACCESS_VIOLATION
#
# ErrorID: 4f53f57494e13120e43505002b7
#
".
The following program ran fine with jdk1.2fcs but not jdk1.3
This program ran fine win WinNT
-----------------------------------------------------------------------------
import java.awt.*;
import java.awt.event.*;
public class fileDialog extends Frame {
public static void main(String argv[] ) {
fileDialog d = new fileDialog();
}
public fileDialog () {
setTitle("FileDialog Test Frame");
show();
setSize(200, 200);
addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent we) {
System.exit(0);
}
});
FileDialog openDialog =
new FileDialog(this, "Open File...", FileDialog.LOAD);
openDialog.setDirectory("/tmp");
openDialog.setFile("foo");
openDialog.setVisible(true);
}
}
-----------------------------------------------------------------------------
Roger Pham 10/23/99
Red status tag removed, Roger Pham 11/2/99
or "Open" the win'98 on a laptop PC screen locks up and the system froze.
On a Dell PC also running win'98, it displays the following error message: "
#
# HotSpot Virtual Machine Error, EXCEPTION_ACCESS_VIOLATION
#
# ErrorID: 4f53f57494e13120e43505002b7
#
".
The following program ran fine with jdk1.2fcs but not jdk1.3
This program ran fine win WinNT
-----------------------------------------------------------------------------
import java.awt.*;
import java.awt.event.*;
public class fileDialog extends Frame {
public static void main(String argv[] ) {
fileDialog d = new fileDialog();
}
public fileDialog () {
setTitle("FileDialog Test Frame");
show();
setSize(200, 200);
addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent we) {
System.exit(0);
}
});
FileDialog openDialog =
new FileDialog(this, "Open File...", FileDialog.LOAD);
openDialog.setDirectory("/tmp");
openDialog.setFile("foo");
openDialog.setVisible(true);
}
}
-----------------------------------------------------------------------------
Roger Pham 10/23/99
Red status tag removed, Roger Pham 11/2/99
- duplicates
-
JDK-4274071 BeanBox can't load jars and crashes with JDK-1.3fcs-G on Windows 95
- Closed
- relates to
-
JDK-4265922 "save" causes abnormal termination with Kestrel fcs "C" on Windows Japanese
- Closed