Java Scanner useLocale()方法
java.util.Scanner.useLocale(Locale locale) 方法设置此scanner的语言环境,以指定的语言环境。
1 语法
public Scanner useLocale(Locale locale)
2 参数
locale:一个字符串,指定要使用的区域
3 返回值
此方法返回此scanner。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.Scanner.useLocale(Locale locale) 方法的例子
*/
import java.util.*;
public class Demo {
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
热门文章
优秀文章