logo

Java-Scanner nextLine()-Methode

Der nächste Zeile() Die Methode der Java-Scanner-Klasse wird verwendet, um die Eingabezeichenfolge abzurufen, die vom Scanner-Objekt übersprungen wurde.

Syntax

Es folgt die Erklärung von nächste Zeile() Methode:

 public String nextLine() 

Parameter

Diese Methode akzeptiert keine Parameter.

Kehrt zurück

Der nächste Zeile() Die Methode gibt die übersprungene Zeile zurück.

Ausnahmen

NoSuchElementException – Diese Ausnahme wird ausgelöst, wenn keine Zeile gefunden wurde.

Illegale staatliche Ausnahme – Diese Ausnahme wird ausgelöst, wenn der Aufruf erfolgt, nachdem der Scanner geschlossen wurde.

Formatieren Sie das Datum in Java

Kompatibilitätsversion

Java 1.5 und höher

Beispiel 1

 import java.util.*; public class ScannerNextLineExample1 { public static void main(String args[]){ Scanner scan = new Scanner(System.in); System.out.print('Enter Item ID: '); String itemID = scan.nextLine(); System.out.print('Enter Item price: '); String priceStr = scan.nextLine(); double price = Double.valueOf(priceStr); System.out.println('Price of Item '+itemID + ' is $'+price); scan.close(); } } 

Ausgabe:

 Enter Item ID: A151 Enter Item price: 3473.75 Price of Item A151 is 73.75 

Beispiel 2

 import java.io.File; import java.io.FileNotFoundException; import java.util.*; public class ScannerNextLineExample2 { public static void main(String args[]) throws FileNotFoundException{ // Declare File object File file = new File('/home/javatpoint/Desktop/ABHISHEK/AngularJS/Index/abc.txt'); // initialize the scanner Scanner scan = new Scanner(file); // iterate through the file line by line while(scan.hasNextLine()){ // print the contents of a file by line System.out.println(scan.nextLine()); } // close the scanner object; scan.close(); } } 

Ausgabe:

 hasNextLine public boolean hasNextLine() IllegalStateException 

Beispiel 3

 import java.util.*; public class ScannerNextLineExample3 { public static void main(String args[]){ String str = 'Facebook.com 
 1 + 1 = 2.0 
 JavaTpoint.com '; Scanner scanner = new Scanner(str); //Print the next line System.out.println(scanner.nextLine()); //Check if there is a next line again System.out.println(scanner.hasNextLine()); System.out.println(scanner.nextLine()); //Check if there is a next line again System.out.println(scanner.hasNextLine()); System.out.println(scanner.nextLine()); //Check if there is a next line again System.out.println(scanner.hasNextLine()); scanner.close(); } } 

Ausgabe:

 Facebook.com true 1 + 1 = 2.0 true JavaTpoint.com false