Java.util.Scanner.nextByte() Java.util.Scanner.nextBoolean() Java.util.Scanner.nextByte() 描述 所述java.util.Scanner.nextByte()方法扫描输入作为一个字节的下一个标记。调用nextByte()形式的此方法的行为与调用nextByte(radix)的方式完全相同,其中radix是此扫描程序的默认基数。 声明 以下是java.util.Scanner.nextByte()方法的声明 public byte nextByte() 参数 NA 返回值 此方法返回从输入扫描的字节 异常 InputMismatchException - 如果下一个标记与Integer正则表达式不匹配,或者超出范围 NoSuchElementException - 如果输入已用尽 IllegalStateException - 如果此扫描程序已关闭 实例 以下示例显示了java.util.Scanner.nextByte()方法的用法。 package com.tutorialspoint; import java.util.*; public class ScannerDemo { public static void main(String[] args) { String s = "Hello World! 3 + 3.0 = 6 true"; // create a new scanner with the specified String Object Scanner scanner = new Scanner(s); // find the next Byte token and print it // loop for the whole scanner while (scanner.hasNext()) { // if the next is byte, print found and the byte if (scanner.hasNextByte()) { System.out.println("Found :" + scanner.nextByte()); } // if a Byte is not found, print "Not Found" and the token System.out.println("Not Found :" + scanner.next()); } // close the scanner scanner.close(); } } 让我们编译并运行上面的程序,这将产生以下结果 Not Found :Hello Not Found :World! Found :3 Not Found :+ Not Found :3.0 Not Found := Found :6 Not Found :true Java.util.Scanner.nextBoolean() Java.util.Scanner.nextByte()