Comment vérifier les lignes dans un fichier Scanner Java
int count = 0;
while (scanner.hasNextLine()) {
count++;
scanner.nextLine();
}
Magnificent Mockingbird
int count = 0;
while (scanner.hasNextLine()) {
count++;
scanner.nextLine();
}