logo

סורק Java NextLine() שיטה

ה nextLine() השיטה של ​​מחלקת Java Scanner משמשת כדי לקבל את מחרוזת הקלט שעליה דילגה מאובייקט הסורק.

תחביר

להלן ההצהרה של nextLine() שיטה:

 public String nextLine() 

פָּרָמֶטֶר

שיטה זו אינה מקבלת שום פרמטר.

החזרות

ה nextLine() השיטה מחזירה את השורה שדילגה עליה.

חריגים

NoSuchElementException - זה יזרוק את החריג הזה אם לא נמצא קו.

חריגה של מדינה בלתי חוקית - זה יזרוק את החריג הזה אם ההתקשרות תתבצע לאחר סגירת הסורק.

שיטת compareto java

גרסת תאימות

Java 1.5 ומעלה

דוגמה 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(); } } 

תְפוּקָה:

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

דוגמה 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(); } } 

תְפוּקָה:

 hasNextLine public boolean hasNextLine() IllegalStateException 

דוגמה 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(); } } 

תְפוּקָה:

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