java.util.Scanner.useLocale()方法實例
java.util.Scanner.useLocale(Locale locale) 方法設置此scanner的語言環境,以指定的語言環境。
聲明
以下是java.util.Scanner.useLocale()方法的聲明
public Scanner useLocale(Locale locale)
參數
-
locale -- 一個字符串,指定要使用的區域
返回值
此方法返回此scanner
異常
-
NA
例子
下麵的示例演示java.util.Scanner.useLocale()方法的用法。
package com.yiibai; 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