Java Scanner.hasNextByte(int radix)
Syntax
Scanner.hasNextByte(int radix) has the following syntax.
public boolean hasNextByte(int radix)
Example
In the following code shows how to use Scanner.hasNextByte(int radix) method.
/*from w ww . j a va2s . co m*/
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);
while (scanner.hasNext()) {
// check if the scanner's next token is a byte with radix 4
System.out.println(scanner.hasNextByte(4));
System.out.println(scanner.next());
}
scanner.close();
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »