Answers for "get number of lines in text file scanner java"

0

how to check the lines in a file java scanner

int count = 0;
while (scanner.hasNextLine()) {
    count++;
    scanner.nextLine();
}
Posted by: Guest on April-01-2020

Code answers related to "get number of lines in text file scanner java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language