Answers for "how to read the next line as input in java after reading input"

1

java read next line

Scanner scanner = new Scanner(new File("filename"));
while (scanner.hasNextLine()) {
   String line = scanner.nextLine();
   // process the line
}
Posted by: Guest on May-06-2020

Code answers related to "how to read the next line as input in java after reading input"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language