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

Langage Java Discussion :

erreur java.lang.NullPointerException impossible à résoudre


Sujet :

Langage Java

  1. #21
    Membre actif Avatar de g0up1l
    Profil pro
    Inscrit en
    Janvier 2006
    Messages
    341
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2006
    Messages : 341
    Points : 294
    Points
    294
    Par défaut
    Bon ,dernier essai, d'après la javadoc , il vaut mieux utiliser :


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
     
    BigDecimal bd = BigDecimal.valueOf(0.0);
    produit.setPrix( bd );
    pour créer ton BigDecimal. Essaye ça...et dis-moi que ça marche stp...
    Hope it helps !
    Nouveau ! Il y a une vie après le java, oxygénez-vous

  2. #22
    Membre confirmé Avatar de oceane751
    Profil pro
    Intégrateur Web
    Inscrit en
    Novembre 2004
    Messages
    1 280
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Intégrateur Web

    Informations forums :
    Inscription : Novembre 2004
    Messages : 1 280
    Points : 575
    Points
    575
    Par défaut
    je met ça comme tas dit produit.setPrix( bd ); ? et le "prix", résultat de la requete?

  3. #23
    Membre confirmé Avatar de oceane751
    Profil pro
    Intégrateur Web
    Inscrit en
    Novembre 2004
    Messages
    1 280
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Intégrateur Web

    Informations forums :
    Inscription : Novembre 2004
    Messages : 1 280
    Points : 575
    Points
    575
    Par défaut
    cé qd meme chelou tout ça
    parc que dans le code qui marche j'ai bien ça :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
     Produit produit = new Produit();
     produit.setPrix(new BigDecimal(prix));

  4. #24
    Membre actif Avatar de g0up1l
    Profil pro
    Inscrit en
    Janvier 2006
    Messages
    341
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2006
    Messages : 341
    Points : 294
    Points
    294
    Par défaut
    Ben, tu avais une erreur à l'initialisation des BigDecimal car tu initialisais sur une String = null;
    C'était l'erreur de départ , et ça, ça ne POUVAIT pas marcher.


    Donc essaye, pour initialiser tes BigDecimal avec une valeur double :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    double monDouble = 0 ;
    BigDecimal bd = BigDecimal.valueOf( monDouble );
    produit.setPrix( bd );
    Hope it helps !
    Nouveau ! Il y a une vie après le java, oxygénez-vous

  5. #25
    Membre confirmé Avatar de oceane751
    Profil pro
    Intégrateur Web
    Inscrit en
    Novembre 2004
    Messages
    1 280
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Intégrateur Web

    Informations forums :
    Inscription : Novembre 2004
    Messages : 1 280
    Points : 575
    Points
    575
    Par défaut
    je remplace ça
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    produit.setPrix(new BigDecimal(prix));
    par ça
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    produit.setPrix( bd );
    ?
    parce que là le prix il n'est plus là..

  6. #26
    Membre actif Avatar de g0up1l
    Profil pro
    Inscrit en
    Janvier 2006
    Messages
    341
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2006
    Messages : 341
    Points : 294
    Points
    294
    Par défaut
    Mais si, ton prix tu t'en serts pour constuire ton BigDecimal !!


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    double prix = 31.40 ;//c'est juste un exemple...
    BigDecimal bd = BigDecimal.valueOf( prix );
    produit.setPrix( bd );
    T'as compris ??

    si ton prix tu l'as en String, n'oublie pas de le convertir en double avant :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    double prix = Double.parseDouble( "31.40");
    Dans ces exemples, 31.40 c'est un exemple de prix...
    Hope it helps !
    Nouveau ! Il y a une vie après le java, oxygénez-vous

  7. #27
    Membre confirmé Avatar de oceane751
    Profil pro
    Intégrateur Web
    Inscrit en
    Novembre 2004
    Messages
    1 280
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Intégrateur Web

    Informations forums :
    Inscription : Novembre 2004
    Messages : 1 280
    Points : 575
    Points
    575
    Par défaut
    jcrois que je vais imprimer les 2 codes et les comparer demain. parce que je commence à tomber
    merci en tout cas de m'avoir accordé un peu de ton temps.
    je reviens demain pour te tenir au courant si j'arrive à trouver quelque chose en faisant la comparaison ou pas.

  8. #28
    Membre actif Avatar de g0up1l
    Profil pro
    Inscrit en
    Janvier 2006
    Messages
    341
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2006
    Messages : 341
    Points : 294
    Points
    294
    Par défaut
    Ouais, bonne nuit !
    Hope it helps !
    Nouveau ! Il y a une vie après le java, oxygénez-vous

  9. #29
    Membre confirmé Avatar de oceane751
    Profil pro
    Intégrateur Web
    Inscrit en
    Novembre 2004
    Messages
    1 280
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Intégrateur Web

    Informations forums :
    Inscription : Novembre 2004
    Messages : 1 280
    Points : 575
    Points
    575
    Par défaut
    oki okiiiiii

    je suis trop à l'ouest là lol

    je fais ça demain!

    merci encore pour ton aide et je te tiens au courant de l'évolution

  10. #30
    Membre confirmé Avatar de oceane751
    Profil pro
    Intégrateur Web
    Inscrit en
    Novembre 2004
    Messages
    1 280
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Intégrateur Web

    Informations forums :
    Inscription : Novembre 2004
    Messages : 1 280
    Points : 575
    Points
    575
    Par défaut
    alors me revoici :

    j'ai initialiser comme suit :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    double prixini = 0 ;
    puis
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
     
    String prix = props.getProperty(resultat.getString("prix"));
    				prixx = new JLabel(prix);
     
     
     
    				double prixini = Double.parseDouble(prix);
    				BigDecimal bd = BigDecimal.valueOf( prixini );
     
    				Produit produit = new Produit();
    				produit.setPrix( bd );
    et j'ai comme erreur :
    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
     
    java.lang.NullPointerException
    	at sun.misc.FloatingDecimal.readJavaFormatString(Unknown Source)
    	at java.lang.Double.parseDouble(Unknown Source)
    	at carte.<init>(carte.java:79)
    	at AcceuilCrepe.actionPerformed(AcceuilCrepe.java:62)
    	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.plaf.basic.BasicButtonListener.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.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForHierarchy(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)
    grrrrrrrrrrrr

  11. #31
    Membre éclairé
    Profil pro
    Inscrit en
    Février 2007
    Messages
    572
    Détails du profil
    Informations personnelles :
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations forums :
    Inscription : Février 2007
    Messages : 572
    Points : 675
    Points
    675
    Par défaut
    prix vaut null

    Il faut regarder du cote de
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    String prix = props.getProperty(resultat.getString("prix"));
    pour savoir pourquoi

  12. #32
    Membre confirmé Avatar de oceane751
    Profil pro
    Intégrateur Web
    Inscrit en
    Novembre 2004
    Messages
    1 280
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Intégrateur Web

    Informations forums :
    Inscription : Novembre 2004
    Messages : 1 280
    Points : 575
    Points
    575
    Par défaut
    j'ai fait ça :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    JOptionPane.showMessageDialog(null,props.getProperty(resultat.getString("prix")));
    et dans la boite de dialogue, je n'ai aucun chiffre qui s'affiche, donc c'est bien là :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    String prix = props.getProperty(resultat.getString("prix"));
    que ça cloche...

  13. #33
    Membre confirmé Avatar de oceane751
    Profil pro
    Intégrateur Web
    Inscrit en
    Novembre 2004
    Messages
    1 280
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Intégrateur Web

    Informations forums :
    Inscription : Novembre 2004
    Messages : 1 280
    Points : 575
    Points
    575
    Par défaut
    bon en faite je me sui renseigné et l'utilisation de Properties concerne les fichiers textes(que j'utilisais pour la meme application) mais maintenant j'utilise une BDD mysql..
    donc en faite c'est pour ça que ça ne marchait pas..


    le probleme est reglé!!!!!!!

    le 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
    150
    151
    152
    153
     
     
    import javax.swing.*;
     
    import java.awt.*;
    import java.awt.event.*;
    import java.sql.*;
    import java.util.Enumeration;
    import java.util.Hashtable;
    import java.util.Properties;
    import java.math.BigDecimal;
    import java.io.*;
    import java.lang.*;
     
     
     
     
    public class carte extends JFrame implements ActionListener
    //, ItemListener
    //implements ItemListener 
    {
     
     
    //	 Hashtable() : permet de stocker des valeurs en les associant à des 
        // identificateurs uniques calculés à partir de clés
        private Hashtable associationProduitsPrix = new Hashtable();
     
    	private JPanel panel;//Déclaration de l'objet JPanel	
    	private JLabel prixx, type;
        private JButton bouton;
        private Checkbox sale,chek;
     
     
     
     
        public carte()
    	{
     
        	 JFrame frame = new JFrame();
     
             frame.setSize(300,700);
             frame.setVisible(true);
             pack();
             setLocationRelativeTo(null);
             setDefaultCloseOperation(EXIT_ON_CLOSE);
             panel = new JPanel();
             frame.setContentPane(panel);
    		panel.setLayout(new FlowLayout(FlowLayout.LEFT,5,2));
     
     
     
    		String pilote = "com.mysql.jdbc.Driver";
    		try
    		{
    			//Chargement de mon pilote
    			Class.forName(pilote);
    			//Connexion à ma base mysql avec mon login et mot de passe 
    			Connection connexion = DriverManager.getConnection("jdbc:mysql://localhost/creperie","root","root");
    			//Création de mon statement qui va me permettre d'executer mes requetes
    			Statement instruction = connexion.createStatement();
     
    			ResultSet resultatt = instruction.executeQuery("SELECT DISTINCT type FROM carte ");
    			while(resultatt.next())
    			{
    				type = new JLabel(resultatt.getString("type"));
    				panel.add(type);
     
     
    			Statement instructionn = connexion.createStatement();	
    			ResultSet resultat = instructionn.executeQuery("SELECT nom, prix FROM carte WHERE type = '"+resultatt.getString("type")+"'");
     
     
     
    			while(resultat.next())
    			{
     
    				String nom = resultat.getString("nom");
     
    				sale = new Checkbox(nom);
    				panel.add(sale);
     
     
    				String prix = resultat.getString("prix");
    				prixx = new JLabel(prix);
    				Produit produit = new Produit();
    				produit.setPrix(new BigDecimal(prix));
     
     
    				associationProduitsPrix.put(sale,produit);
     
    				}
    			} 
     
     
     
     
    		}
    		catch(Exception e) {
    			e.printStackTrace();
    		}
     
     
    		bouton = new JButton("ticket");
    		panel.add(bouton);
    		bouton.addActionListener(this);//On ajoute la fenêtre en tant qu'écouteur du bouton*/
     
     
     
    	}
     
     
     
     
    /*Checkbox che;
     
    	public void itemStateChanged(ItemEvent evt)
    	{
    		che= (Checkbox)evt.getSource();
    	}*/
     
     
    	public void actionPerformed(ActionEvent e) 
        {
    		if(e.getSource() == bouton)
    		{
     
     
    			BigDecimal total = new BigDecimal("0.00"); //initialise à 0
     
                 Enumeration enu = associationProduitsPrix.keys();
     
     
    			while (enu.hasMoreElements())
    			{
    				Checkbox check = (Checkbox)enu.nextElement();
     
    				if (check.getState())
    				{
     
    					Produit produit = (Produit)associationProduitsPrix.get(check);
    					BigDecimal prix = produit.getPrix();
     
    					total = total.add(prix);
    				}
    			}
     
                  JOptionPane.showMessageDialog(null, "total :" +total);
     
     
    		}
        }
     
    }
    merci encore !!!!!!

+ Répondre à la discussion
Cette discussion est résolue.
Page 2 sur 2 PremièrePremière 12

Discussions similaires

  1. Erreur java. lang.NullPointerException
    Par hicham.gi dans le forum Struts 1
    Réponses: 17
    Dernier message: 03/06/2009, 11h11
  2. Erreur java.lang.NullPointerException hibernate
    Par sousoujda2 dans le forum Hibernate
    Réponses: 8
    Dernier message: 11/03/2008, 19h32
  3. Réponses: 0
    Dernier message: 26/12/2007, 17h28
  4. [Débutant] Erreur java.lang.NullPointerException
    Par Kevin12 dans le forum Struts 1
    Réponses: 2
    Dernier message: 12/02/2007, 15h48
  5. Probleme erreur java.lang.NullPointerException
    Par Tsukaasa dans le forum Langage
    Réponses: 4
    Dernier message: 25/05/2006, 18h19

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