Home »
Java programming language
Java Scanner hasNextLine() Method with Example
Scanner Class hasNextLine() method: Here, we are going to learn about the hasNextLine() method of Scanner Class with its syntax and example.
Submitted by Preeti Jain, on February 18, 2020
Scanner Class hasNextLine() method
- hasNextLine() method is available in java.util package.
- hasNextLine() method is used to check whether any other line in the input of this Scanner exists or not.
- hasNextLine() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
- hasNextLine() method may throw an exception at the time of checking the next line exists in the given input.
IllegalStateException: This exception may throw when this Scanner is not opened.
Syntax:
public boolean hasNextLine();
Parameter(s):
- It does not accept any parameter.
Return value:
The return type of the method is boolean, it returns true when new line exists in its input otherwise it returns false.
Example:
// Java program to demonstrate the example
// of boolean hasNextLine() method of Scanner
import java.util.*;
public class HasNextLineOfScanner {
public static void main(String[] args) {
String str = "Hi, [IncludeHelp] +\n 10.0 true ";
// Instantiates a Scanner object with
// the given string str
Scanner sc = new Scanner(str);
// Display str
System.out.println("sc.nextLine(): " + sc.nextLine());
// By using hasNextLine() method is
// to check whether this Scanner next token
// contain valid valid another line or not
boolean status = sc.hasNextLine();
System.out.println("sc.hasNextLine(): " + sc.hasNextLine());
// By using close() method is to
// close the Scanner object
sc.close();
}
}
Output
sc.nextLine(): Hi, [IncludeHelp] +
sc.hasNextLine(): true