Salve a tutti,
dato un file di input "save.txt" contenente dati del tipo:
5
Mario Rossi/0123456
Luca Bianchi/9876543
Giovanni Verdi/3456789
come posso importare queste informazioni costruendo 1 intero e 2 stringhe, una contenente Nome e Cognome e l'altra il Telefono.
Ho pensato a questo, ma non funziona correttamente:
File load = new File("save.txt");
leggi = new Scanner(load);
s = leggi.next();
int i = Integer.valueOf(s);
s = leggi.next();
while(s != null)
{
st = new StringTokenizer(s,"/");
String aux_n = st.nextToken();
String aux_t = st.nextToken();
S.prenota(aux_n, aux_t);
s = leggi.next();
}