Example usage for java.util Scanner nextShort

List of usage examples for java.util Scanner nextShort

Introduction

In this page you can find the example usage for java.util Scanner nextShort.

Prototype

public short nextShort(int radix) 

Source Link

Document

Scans the next token of the input as a short .

Usage

From source file:Main.java

public static void main(String[] args) {

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

    Scanner scanner = new Scanner(s);

    while (scanner.hasNext()) {
        if (scanner.hasNextShort()) {
            System.out.println("Found :" + scanner.nextShort(4));
        }/*from   ww  w .ja  v a2s.  c om*/
        System.out.println("Not Found :" + scanner.next());
    }

    scanner.close();
}