IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

AWT/Swing Java Discussion :

Exception de type java.lang.NullPointerException


Sujet :

AWT/Swing Java

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre averti
    Homme Profil pro
    Étudiant
    Inscrit en
    Janvier 2012
    Messages
    26
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Janvier 2012
    Messages : 26
    Par défaut Exception de type java.lang.NullPointerException
    Bonjour,
    j'ai vu quelques situations impliquant la même erreur, mais les situations sont toujours un peu différentes et je n'ai pas réussi à me dépanner.

    Je fais présentement une interface qui permet d'afficher du texte dans un JTextArea (j'essaie du moins...) et j'ai des problèmes lorsque j'essaie d'ouvrir le texte. En effet, je reçois toujours l'exception java.lang.NullPointerException. Voici mon code:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
     
    import java.awt.BorderLayout;
    import java.awt.EventQueue;
     
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.border.EmptyBorder;
    import javax.swing.GroupLayout;
    import javax.swing.GroupLayout.Alignment;
    import javax.swing.JFileChooser;
    import javax.swing.JMenuBar;
    import javax.swing.JMenu;
    import javax.swing.JMenuItem;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.InputStreamReader;
     
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    import javax.swing.JLabel;
    import javax.swing.LayoutStyle.ComponentPlacement;
    import javax.swing.JTextField;
     
    public class BaseGui extends JFrame {
     
    	private JPanel contentPane;
    	private JTextField textRechercher;
    	private JTextArea textProlog;
    	/**
             * Lancement de l'application
             */
    	public static void main(String[] args) {
    		EventQueue.invokeLater(new Runnable() {
    			public void run() {
    				try {
    					BaseGui frame = new BaseGui();
    					frame.setVisible(true);
    				} catch (Exception e) {
    					e.printStackTrace();
    				}
    			}
    		});
    	}
     
    	/**
             * Initialisation
             */
    	public BaseGui() {
    		initComposants();
    	}
     
    	public void initComposants() {
    		setTitle("Interface graphique Prolog");
    		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    		setBounds(100, 100, 674, 510);
     
    		JMenuBar menuBar = new JMenuBar();
    		setJMenuBar(menuBar);
     
    		JMenu mnFichier = new JMenu("Fichier");
    		menuBar.add(mnFichier);
     
    		JMenuItem mnOuvrirOrdi = new JMenuItem("Ouvrir un fichier sur l'ordinateur");
    		mnFichier.add(mnOuvrirOrdi);
     
    		JMenuItem mnOuvrirServeur = new JMenuItem("Ouvrir un fichier sur un serveur");
    		mnFichier.add(mnOuvrirServeur);
     
    		JMenuItem mnSauvegardeOrdi = new JMenuItem("Sauvegarder un fichier sur l'ordinateur");
    		mnFichier.add(mnSauvegardeOrdi);
     
    		JMenuItem mnSauvegardeServeur = new JMenuItem("Sauvegarder un fichier sur un serveur");
    		mnFichier.add(mnSauvegardeServeur);
     
    		JMenuItem mnQuitter = new JMenuItem("Quitter");
    		mnQuitter.addActionListener(new ActionListener() {
    			public void actionPerformed(ActionEvent arg0) {
    				dispose();
    			}
    		});
    		mnFichier.add(mnQuitter);
     
    		JMenu mnAide = new JMenu("Aide");
    		menuBar.add(mnAide);
    		contentPane = new JPanel();
    		contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
    		setContentPane(contentPane);
     
    		JScrollPane scrollPane = new JScrollPane();
     
    		JLabel lblRecherche = new JLabel("Recherche :");
     
    		textRechercher = new JTextField();
    		textRechercher.setColumns(10);
    		GroupLayout gl_contentPane = new GroupLayout(contentPane);
    		gl_contentPane.setHorizontalGroup(
    			gl_contentPane.createParallelGroup(Alignment.LEADING)
    				.addGroup(gl_contentPane.createSequentialGroup()
    					.addContainerGap()
    					.addGroup(gl_contentPane.createParallelGroup(Alignment.LEADING)
    						.addComponent(scrollPane, GroupLayout.PREFERRED_SIZE, 627, GroupLayout.PREFERRED_SIZE)
    						.addGroup(gl_contentPane.createSequentialGroup()
    							.addComponent(lblRecherche)
    							.addPreferredGap(ComponentPlacement.RELATED)
    							.addComponent(textRechercher, GroupLayout.DEFAULT_SIZE, 566, Short.MAX_VALUE)))
    					.addContainerGap())
    		);
    		gl_contentPane.setVerticalGroup(
    			gl_contentPane.createParallelGroup(Alignment.LEADING)
    				.addGroup(gl_contentPane.createSequentialGroup()
    					.addContainerGap()
    					.addComponent(scrollPane, GroupLayout.PREFERRED_SIZE, 368, GroupLayout.PREFERRED_SIZE)
    					.addPreferredGap(ComponentPlacement.RELATED, 26, Short.MAX_VALUE)
    					.addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE)
    						.addComponent(lblRecherche)
    						.addComponent(textRechercher, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
    					.addGap(22))
    		);
     
    		textProlog = new JTextArea();
    		scrollPane.setViewportView(textProlog);
    		contentPane.setLayout(gl_contentPane);		
     
    	    mnOuvrirOrdi.addActionListener(new OpenL());
    //	    mnOuvrirServeur.addActionListener(new OpenD());
    //	    mnSauvegardeOrdi.addActionListener(new SaveL());
    //	    mnSauvegardeServeur.addActionListener(new SaveD());
    	}
     
    	class OpenL implements ActionListener {
    		public void actionPerformed(ActionEvent e) {
    	        JFileChooser ouverture = new JFileChooser();
    	        try{
    	            String strLine;
    	            File selectedFile = ouverture.getSelectedFile();
    	            FileInputStream in = new FileInputStream(selectedFile);
    	            BufferedReader br = new BufferedReader(new InputStreamReader(in));
    	            while ((strLine = br.readLine()) != null) {
    	                textProlog.append(strLine + "\n");
    	            }
    	            }catch(IOException e1){
    	               textProlog.append("Impossible d'afficher ce ficher.");
    	            }
    	        }
    	   	}
    	}
    Il est a noter que j'ai remplacé l'exception dans le catch du try/catch pour qu'on puisse voir l'erreur sur la console. Habituellement, je mettais seulement Exception pour enlever les IOException et les exceptions que pourraient causer un mauvais nom de fichier. Il y a encore trois menus non-utilisés que j'aimerais exploiter éventuellement. Je les ai mis en commentaire donc ne vous en occupez pas.

    Voici le message d'erreur:

    Exception in thread "AWT-EventQueue-0" java.lang.Error: Unresolved compilation problem:
    IOException cannot be resolved to a type

    at jfilechooser.resources.BaseGui$OpenL.actionPerformed(BaseGui.java:145)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.AbstractButton.doClick(Unknown Source)
    at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)
    at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.JComponent.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    at java.awt.EventQueue.access$000(Unknown Source)
    at java.awt.EventQueue$3.run(Unknown Source)
    at java.awt.EventQueue$3.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue$4.run(Unknown Source)
    at java.awt.EventQueue$4.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(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)
    Avez-vous des idées?

  2. #2
    Membre expérimenté Avatar de Vikisme
    Homme Profil pro
    Développeur Java
    Inscrit en
    Avril 2007
    Messages
    172
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France, Rhône (Rhône Alpes)

    Informations professionnelles :
    Activité : Développeur Java

    Informations forums :
    Inscription : Avril 2007
    Messages : 172
    Par défaut
    Je pense que la stacktrace de l'erreur ne correspond pas à ton erreur... Il s'agit là d'un problème de compilation parce que la classe IOException n'est pas importée...

  3. #3
    Membre averti
    Homme Profil pro
    Étudiant
    Inscrit en
    Janvier 2012
    Messages
    26
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Janvier 2012
    Messages : 26
    Par défaut
    Oui désolé! J'ai dû l'enlever par inadvertance. L'erreur à laquelle je me butais était plutôt celle-ci:

    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    at java.io.FileInputStream.<init>(Unknown Source)
    at jfilechooser.resources.BaseGui$OpenL.actionPerformed(BaseGui.java:144)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.AbstractButton.doClick(Unknown Source)
    at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)
    at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.JComponent.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    at java.awt.EventQueue.access$000(Unknown Source)
    at java.awt.EventQueue$3.run(Unknown Source)
    at java.awt.EventQueue$3.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue$4.run(Unknown Source)
    at java.awt.EventQueue$4.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(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)

  4. #4
    Expert éminent
    Avatar de tchize_
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Avril 2007
    Messages
    25 482
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 46
    Localisation : Belgique

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2007
    Messages : 25 482
    Par défaut
    Il semble que vous n'envoyez pas de fichier au constructeur de FileInputStream.
    En fait ouverture.getSelectedFile(); vous renverra toujours null puisque vous ne laissez pas l'opportunité au JFileChooser de demander à l'utilisateur de choisir un fichier.

  5. #5
    Membre averti
    Homme Profil pro
    Étudiant
    Inscrit en
    Janvier 2012
    Messages
    26
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Janvier 2012
    Messages : 26
    Par défaut
    Aaahhh oui! Effectivement. Erreur de débutant, désolé de vous avoir dérangé pour ça et merci!

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. erreurs de type java.lang.NullPointerException
    Par laposte dans le forum Servlets/JSP
    Réponses: 17
    Dernier message: 06/04/2009, 19h45
  2. Exception in thread "main" java.lang.NullPointerException
    Par yrlac dans le forum Concurrence et multi-thread
    Réponses: 6
    Dernier message: 24/05/2007, 17h19
  3. Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    Par Trint dans le forum Interfaces Graphiques en Java
    Réponses: 6
    Dernier message: 27/02/2007, 11h28
  4. Réponses: 8
    Dernier message: 11/05/2006, 19h32
  5. [JDIC]Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    Par kedare dans le forum Concurrence et multi-thread
    Réponses: 4
    Dernier message: 06/05/2006, 22h45

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo