List of usage examples for java.util Scanner hasNextByte
public boolean hasNextByte(int radix)
From source file:Main.java
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()); }// www.j a va 2 s .co m scanner.close(); }