09/04/2013, 05:38
|
| | | Fecha de Ingreso: agosto-2008 Ubicación: En internet
Mensajes: 2.511
Antigüedad: 16 años, 4 meses Puntos: 188 | |
Respuesta: Lectura ficheros de texto (Basica) while (plantilla.hasNextLine()){
//edadtot = edadtot + plantilla.nextInt();
}
En teoria estás cogiendo la tercera linea e intentando parsear a int algo que no lo es.
Prueba esto y trata de entender lo que pasa:
while (plantilla.hasNextLine()){
String texto = plantilla.nextLine();
System.out.println(texto);
String[] separat = texto.split(" ");
// Suponiendo que entre el nombre y la edad hay un espacio en blanco creo que esto deberia funcionar
edadtot = edadtot + Integer.valueOf(separat[1]).intValue();
}
__________________ if (fuzzy && smooth) {
fuzzylog = "c00l";
return true;
} |