-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
1.4.2
-
x86
-
windows_xp
Name: rmT116609 Date: 06/09/2003
FULL PRODUCT VERSION :
java version "1.3.1_07"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_07-b02)
Java HotSpot(TM) Client VM (build 1.3.1_07-b02, mixed mode)
java version "1.4.2-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2-beta-b19)
Java HotSpot(TM) Client VM (build 1.4.2-beta-b19, mixed mode)
FULL OS VERSION :
Windows NT ?Å?{ 4.0
Microsoft Windows 2000 [?Å?{ 5.00.2195]
Microsoft Windows XP [?Å?{ 5.1.2600]
A DESCRIPTION OF THE PROBLEM :
I see a dialog for the input method 'about' dialog pops up on every platform I used since Windows NT -> XP and since JDK1.3.0 as long as the default input method is New PinYin when Swing is called and after System.exit() is called.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1. Choose Microsoft New Pinyin input method for Traditional Chinese Windows as default input method.
2. Run the following code:
import javax.swing.JFrame;
public class TestUI extends JFrame {
public static void main(String[] args) {
TestUI tui=new TestUI();
tui.show();
System.exit(0);
}
}
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
An about dialog pops up.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import javax.swing.JFrame;
public class TestUI extends JFrame {
public static void main(String[] args) {
TestUI tui=new TestUI();
tui.show();
System.exit(0);
}
}
---------- END SOURCE ----------
(Review ID: 187296)
======================================================================
- duplicates
-
JDK-4833605 Popup window appears when system.exit(0) is executed
-
- Closed
-
- relates to
-
JDK-6409505 [XP] S.Chinese Pinyin IM: cmd-line window left non-responsive after JOptionPane is closed
-
- Closed
-