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

Source Link

Document

Returns true if the next token in this scanner's input can be interpreted as a byte value in the default 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  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  ww.  jav a2s  . c  o  m
        System.out.println("Not Found :" + scanner.next());
    }

    scanner.close();
}

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
        System.out.println(scanner.hasNextByte());

        System.out.println(scanner.next());
    }//from  w  ww  .ja  v a2  s . co  m
    scanner.close();
}

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 with radix 7, print found and the byte
        if (scanner.hasNextByte()) {
            System.out.println("Found :" + scanner.nextByte(7));
        }//from   ww w.  ja  v  a 2  s .  c o m

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

    scanner.close();
}