List of usage examples for java.util Scanner nextShort
public short nextShort(int radix)
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(); }