Java.util.Scanner.useLocale()


描述

该java.util.Scanner.useLocale(Locale locale))方法将此扫描器的语言环境设置为指定的语言环境。

声明

以下是java.util.Scanner.useLocale()方法的声明

public Scanner useLocale(Locale locale)

参数

locale - 指定要使用的语言环境的字符串

返回值

此方法返回此扫描仪

异常

NA

实例

以下示例显示了java.util.Scanner.useLocale()方法的用法。

package com.tutorialspoint;

import java.util.*;

public class ScannerDemo {
   public static void main(String[] args) {

      String s = "Hello World! 3 + 3.0 = 6.0 true ";

      // create a new scanner with the specified String Object
      Scanner scanner = new Scanner(s);

      // print a line of the scanner
      System.out.println("" + scanner.nextLine());

      // change the locale of the scanner
      scanner.useLocale(Locale.ENGLISH);

      // display the new locale
      System.out.println("" + scanner.locale());

      // close the scanner
      scanner.close();
   }
}

让我们编译并运行上面的程序,这将产生以下结果

Hello World! 3 + 3.0 = 6.0 true
en