Je suis nouveau dans la programmation Java. Ma question est la suivante : j'ai un String
mais quand j'essaie de le convertir en un int
, je reçois toujours
java.lang.NumberFormatException
Mon code est
private void processLine(String[] strings) {
Integer[] intarray=new Integer[strings.length];
int i=0;
for(String str:strings){
intarray[i]=Integer.parseInt(str);//Exception in this line
i++;
}
}
Toute aide serait super merci !!!