Java Scanner.hasNextShort()

Syntax

Scanner.hasNextShort() has the following syntax.

public boolean hasNextShort()

Example

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


/* w w  w .  j  a v  a 2  s.c  o  m*/
import java.util.Locale;
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);

      // use US locale in order to be able to identify shorts in a string
      scanner.useLocale(Locale.US);

      while (scanner.hasNext()) {
         // check if the scanner's next token is a short
         System.out.println(scanner.hasNextShort());


         System.out.println(scanner.next());
      }

      scanner.close();
   }
}

The code above generates the following result.