I am trying to read this file, and then put it into a List:
23333
Manuel Oliveira
19
222222
Mário Santos
18
using Scanner. This is how I've done if Ignore the empty line between 19 and 222222.
public List<Aluno> lerFicheiro ( String nomeF) throws FileNotFoundException{
List<Aluno> pauta = new LinkedList<Aluno>();
try{
Scanner s = new Scanner ( new File ( nomeF));
int cont = 0;
String numero = null;
String nome = null;;
String nota;
while ( s.hasNextLine())
{
if ( cont ==0)
{
numero = s.nextLine();
}
else
{
if ( cont == 1)
nome = s.nextLine();
else
{
if ( cont == 2)
{
nota = s.nextLine();
cont =-1;
pauta.add( new Aluno(Integer.valueOf(numero), nome, nota));
}
}
}
cont++;
}
s.close();
}
catch ( FileNotFoundException e)
{
System.out.println(e.getMessage());
}
return pauta;
}
But I've no idea how to still read it with the empty line. Thank you.
You could set delimiter to regex representing one or more line separators like
(\r?\n)+
(or since Java 8\R+
) and simply usenext()
method to read lines.BTW: you should not be placing
close()
insidetry
block but infinally
block. Or better use try-with-resources.So if you are sure that file will always contain tokens build from 3 lines then your method can look like (I changed return type to
List<String>
for simplicity, but you should be able to change it back quite easily)