java.util.Scanner.locale()方法實例
java.util.Scanner.locale() 方法返回此scanner的語言環境。
聲明
以下是java.util.Scanner.locale()方法的聲明
public Locale locale()
參數
-
NA
返回值
此方法返回此scanner的語言環境
異常
-
NA
例子
下麵的示例演示java.util.Scanner.locale()方法的用法。
package com.yiibai; 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