Java.util.Scanner.locale() Java.util.Scanner.ioException() Java.util.Scanner.match() 描述 该java.util.Scanner.locale()方法返回此扫描器的语言环境。 声明 以下是java.util.Scanner.locale()方法的声明 public Locale locale() 参数 NA 返回值 此方法返回此扫描程序的区域设置 异常 NA 实例 以下示例显示了java.util.Scanner.locale()方法的用法。 package com.tutorialspoint; 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()); // print the current locale System.out.println("" + scanner.locale()); // close the scanner scanner.close(); } } 让我们编译并运行上面的程序,这将产生以下结果 Hello World! 3 + 3.0 = 6 en_US Java.util.Scanner.ioException() Java.util.Scanner.match()