Java Scanner.next()

Syntax

Scanner.next() has the following syntax.

public String next()

Example

In the following code shows how to use Scanner.next() method.


/*from w  w w  .ja  va  2 s . com*/
import java.util.Scanner;

public class Main {

   public static void main(String[] args) {

      String s = "java2s.com 1 + 1 = 2.0 ";

      Scanner scanner = new Scanner(s);

      // find the next token and print it
      System.out.println(scanner.next());

      // find the next token and print it
      System.out.println(scanner.next());

      scanner.close();
   }
}

The code above generates the following result.