Buenas
Estoy necesitando leer un archivo con el siguiete formato:
#1
1;2;15/02/2006 20:45:00
2;2;15/03/2006 20:45:20
#2
1;2;15/02/2006 20:45:00
2;2;15/03/2006 20:45:20
Esto es lo que tengo hecho y me da error:
while(al.hayMasLineas()){
StringTokenizer s = new StringTokenizer(al.linea(),";");
if(s.countTokens()==1){
s.nextToken().substring( 1);
tipo = Integer.parseInt(aux.substring(1));
numInt=Integer.parseInt(s.nextToken());
numUsu=Integer.parseInt(s.nextToken());
fechaini=s.nextToken();
fechaFin=s.nextToken();
}
Gracias