I have this code
temp = token.nextToken().toString();
numero = Integer.parseInt(temp);
Is is giving me a numberFormatExeption error Knowing that temp is a string and numero is declared to be an interger
can anyone help