Java Scanner.nextShort(int radix)
Syntax
Scanner.nextShort(int radix) has the following syntax.
public short nextShort(int radix)
Example
In the following code shows how to use Scanner.nextShort(int radix) method.
/*from w ww. j av a2 s. c o m*/
import java.util.Scanner;
public class Main {
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));
}
System.out.println("Not Found :" + scanner.next());
}
scanner.close();
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »