logo

Java Scanner next() metódus

A next() a Java Scanner osztály egyik metódusa, amely megkeresi és visszaadja a következő teljes tokent a használt szkennertől. Három különböző típusú Java Scanner next() metódus létezik, amelyek paramétereitől függően különböztethetők meg. Ezek:

  • Java Scanner next() metódus
  • Java Scanner next(String pattern) Method
  • Java Scanner next (mintaminta) módszer

1. Java Scanner next() metódus

Ez egy szkenner osztályú metódus, amelyet a következő teljes token lekérésére használnak a használatban lévő szkennertől. A teljes tokent megelőzi és követi a határoló mintának megfelelő bevitel.

2. Java Scanner next(String pattern) Method

Ez egy Scanner osztály metódus, amely visszaadja a következő tokent, ha az megegyezik a megadott karakterláncból összeállított mintával.

3. Java szkenner következő (mintaminta) módszer

Ez egy Scanner osztály metódus, amely visszaadja a következő tokent, ha az megfelel a megadott mintának.

Szintaxis

Az alábbiakban a nyilatkozatok olvashatók következő() módszer:

 public String next() public String next(String pattern) public String next(Pattern pattern) 

Paraméter

Adattípus Paraméter Leírás Kötelező/Opcionális
Húr minta Ez egy karakterlánc, amely megadja a beolvasandó mintát. Kívánt
Minta minta Ez a megadott karakterlánc keresésének mintája. Kívánt

Visszatér

A next() metódus a következő teljes tokeneket adja vissza.

Kivételek

NoSuchElementException - Kidobja ezt a kivételt, ha nem talál több tokent.

IllegalStateException - Ezt a kivételt akkor dobja ki, ha a meghívás a szkenner bezárása után történik.

Kompatibilitási verzió

Java 1.5 és újabb

1. példa

 import java.util.*; public class ScannerNextExample1 { public static void main(String[] args) { System.out.print('Enter full name: '); //Create scanner object and read the value from the console Scanner scan = new Scanner(System.in); //Read the first token String firstName = scan.next(); //Read the second token String lastName = scan.next(); //Print the token values read by Scanner object System.out.println('First Name is: '+firstName); System.out.println('Last Name is: '+lastName); scan.close(); } } 

Kimenet:

 Enter full name: Hritik Roshan First Name is: Hritik Last Name is: Roshan 

2. példa

 import java.io.File; import java.io.FileNotFoundException; import java.util.*; public class ScannerNextExample2 { 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.next()); } scan.close(); } } 

Kimenet:

 hasNextLine public boolean hasNextLine() IllegalStateException 

3. példa

 import java.util.*; public class ScannerNextExample3 { public static void main(String args[]) { String s = 'Facebook.com 
 JavaTpoint.com 22 60.0'; //Create a new scanner with the specified String Object Scanner scanner = new Scanner(s); //Find the next token and print it System.out.print('Token Value1 ' + scanner.next()); System.out.print('
Token value2: ' + scanner.next()); scanner.close(); } } 

Kimenet:

 Token Value1 Facebook.com Token value2: JavaTpoint.com 

4. példa

 import java.util.*; public class ScannerNextExample4 { public static void main(String args[]) { //Initialize Scanner object Scanner scan = new Scanner('22 313 45 87'); //Intialize the String pattern String pattern = '[0-9]*'; //Print the tokenized Strings while(scan.hasNext()){ System.out.println('tokenized Strings: '+scan.next(pattern)); } scan.close(); } } 

Kimenet:

 tokenized Strings: 22 tokenized Strings: 313 tokenized Strings: 45 tokenized Strings: 87 

5. példa

 import java.util.*; import java.util.regex.Pattern; public class ScannerNextExample5 { public static void main(String args[]){ String str = 'JavaTpoint Hello World!'; Scanner scanner = new Scanner(str); //Check if next token matches the pattern and print it System.out.println('' + scanner.next(Pattern.compile('.....point'))); //Check if next token matches the pattern and print it System.out.println('' + scanner.next(Pattern.compile('..llo'))); scanner.close(); } } 

Kimenet:

 JavaTpoint Hello