Java.util.Scanner.ioException() 方法 Java.util.Scanner.hasNextShort(int radix) 方法 Java.util.Scanner.locale() 方法 Java.util.Scanner.ioException() 方法 package com.codingdict; import java.util.*; public class ScannerDemo { public static void main(String[] args) { String s = "Hello World! 3 + 3.0 = 6 "; // create a new scanner with the specified String Object Scanner scanner = new Scanner(s); // print the line System.out.println("" + scanner.nextLine()); // check if there is an IO exception System.out.println("" + scanner.ioException()); // close the scanner scanner.close(); } } Java.util.Scanner.hasNextShort(int radix) 方法 Java.util.Scanner.locale() 方法