Bonjour à tous,
je suis en train de construire une applet pour se connecter à un reseau IRC.
je suis suis bloqué sur un point .
je n'ai aucune erreure a la compilation mais a l'execution, c un festival d'erreures lorsque j'essaie d'envoyer un message au serveur ....
Exception in thread "AWT-EventQueue-1" java.lang.NullPointerException
at Chanfenetre.keyReleased(Chanfenetre.java:142)
at java.awt.Component.processKeyEvent(Unknown Source)
at java.awt.Component.processEvent(Unknown Source)
at java.awt.TextComponent.processEvent(Unknown Source)
at java.awt.TextField.processEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.KeyboardFocusManager.redispatchEvent(Unknown Source)
at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(Unknown Source)
at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(Unknown Source)
at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(Unknown Source)
at java.awt.DefaultKeyboardFocusManager.dispatchEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)
Mon socket est ouvert sur un thread de meme que ma sortie = new PrintStream(socket.getOutputStream());
, et je pense que depuis mon interface graphique je n'arrive pas a joindre le thread où se trouve ma sortie. Mais je ne suis meme pas sur de ce que je dis parce que je ne comprend meme pas la signification de ces erreures ...
quelqu'un peut 'il m'eclairer svp ?
merci à vous
Partager