Java Scanner.nextByte()

Syntax

Scanner.nextByte() has the following syntax.

public byte nextByte()

Example

In the following code shows how to use Scanner.nextByte() method.


import java.util.Scanner;
/*from   w  w w .j av  a2 s.co  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.