Scanner.nextByte() has the following syntax.
public byte nextByte()
In the following code shows how to use Scanner.nextByte() method.
import java.util.Scanner; // w w w . j a va2s. c o m 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 the next is byte, print found and the byte if (scanner.hasNextByte()) { System.out.println("Found :" + scanner.nextByte()); } System.out.println("Not Found :" + scanner.next()); } scanner.close(); } }
The code above generates the following result.