Java Scanner.nextByte(int radix)

Syntax

Scanner.nextByte(int radix) has the following syntax.

public byte nextByte(int radix)

Example

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


//w ww  . j a  v  a 2 s  .  c om
import java.util.Scanner;

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 with radix 7, print found and the byte
         if (scanner.hasNextByte()) {
            System.out.println("Found :" + scanner.nextByte(7));
         }

         // if a Byte is not found, print "Not Found" and the token
         System.out.println("Not Found :" + scanner.next());
      }


      scanner.close();
   }
}

The code above generates the following result.