Bonjour , je fais un programme en javaci dessus le code le probleme c'est qu'il me génère une exception qui est la suivanteCode:public void somme(String[][] D) { int c=0; for(int j=0;j<C;j++) { if (D[0][j]==null) continue; else { for(int i=0;i<L;i++) { if(D[0][j].equals(D[i][0])) { System.out.println(D[i][j]); int x= Integer.parseInt(D[i][j]); c =c + x; } } // System.out.println(D[0][j] +"le nombre =" + c); } } }Pour moi le probleme doit venir de la conversion au niveau de Integer.parseInt c'est comme s'il ne le voyait et moi j'arrive à l'afficher la donnée sur l'écran.Code:Exception in thread "main" java.lang.NumberFormatException: For input string: "" at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48) at java.lang.Integer.parseInt(Integer.java:468) at java.lang.Integer.parseInt(Integer.java:497) at my.contacteditor.repertoire.CSVFILE1.somme(CSVFILE1.java:319) at my.contacteditor.repertoire.CSVFILE1.<init>(CSVFILE1.java:54) at my.contacteditor.repertoire.CSVFILE1.main(CSVFILE1.java:329)
Si quelqu'un a une idée j'aimerai bien qu'il m'aide .
Merci
-----