List of usage examples for java.util Scanner nextByte
public byte nextByte()
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 the next is byte, print found and the byte if (scanner.hasNextByte()) { System.out.println("Found :" + scanner.nextByte()); }/*from w w w . j a va2 s . co m*/ System.out.println("Not Found :" + scanner.next()); } scanner.close(); }