Java exception AWT-EventQueue-0" java.lang
Fermé
harizon007
Messages postés
17
Date d'inscription
jeudi 26 mars 2009
Statut
Membre
Dernière intervention
6 décembre 2011
-
22 sept. 2011 à 03:57
KX Messages postés 16754 Date d'inscription samedi 31 mai 2008 Statut Modérateur Dernière intervention 25 novembre 2024 - 22 sept. 2011 à 08:35
KX Messages postés 16754 Date d'inscription samedi 31 mai 2008 Statut Modérateur Dernière intervention 25 novembre 2024 - 22 sept. 2011 à 08:35
A voir également:
- Exception in thread "awt-eventqueue-0" java.lang.numberformatexception: for input string
- Input signal out of range ✓ - Forum Matériel & Système
- Aux in - Forum Audio
- Dc in - Forum Audio
- Cvbs in 1 - Forum Autoradio
- Not in a hypervisor partition (hvp=0) (verr_nem_not_available). vt-x is disabled in the bios for all cpu modes (verr_vmx_msr_all_vmx_disabled). - Forum VirtualBox
2 réponses
choubaka
Messages postés
39409
Date d'inscription
jeudi 4 avril 2002
Statut
Modérateur
Dernière intervention
24 décembre 2024
2 104
22 sept. 2011 à 05:21
22 sept. 2011 à 05:21
Bonjour
Le message d'erreur est clair
default close operation is set to EXIT_ON_CLOSE. ... Exception in thread "AWT-EventQueue-0" java.lang. ... must be one of: DO_NOTHING_ON_CLOSE, HIDE_ON_CLOSE, or DISPOSE_ON_CLOSE ...
ça te rapporte à ceci
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
tu as une ligne de trop, tu ne peux en utiliser qu'une des deux.
Le message d'erreur est clair
default close operation is set to EXIT_ON_CLOSE. ... Exception in thread "AWT-EventQueue-0" java.lang. ... must be one of: DO_NOTHING_ON_CLOSE, HIDE_ON_CLOSE, or DISPOSE_ON_CLOSE ...
ça te rapporte à ceci
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
tu as une ligne de trop, tu ne peux en utiliser qu'une des deux.