Example usage for java.util Scanner hasNextByte

List of usage examples for java.util Scanner hasNextByte

Introduction

In this page you can find the example usage for java.util Scanner hasNextByte.

Prototype

public boolean hasNextByte(int radix) 

Source Link

Document

Returns true if the next token in this scanner's input can be interpreted as a byte value in the specified radix using the #nextByte method.

Usage

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();
}