Example usage for java.util Scanner nextByte

List of usage examples for java.util Scanner nextByte

Introduction

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

Prototype

public byte nextByte() 

Source Link

Document

Scans the next token of the input as a byte .

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 w  w . j  a va2 s  .  co  m*/
        System.out.println("Not Found :" + scanner.next());
    }

    scanner.close();
}