java.util.Locale.getCountry()方法實例
java.util.Locale.getCountry() 方法返回國家/地區代碼為這個區域設置,這要麼是空字符串或大寫的ISO3166兩字母代碼。
聲明
以下是java.util.Locale.getCountry()方法的聲明
public String getCountry()
參數
-
NA
返回值
此方法不返回任何值。
異常
-
NA
例子
下麵的示例演示java.util.Locale.getCountry()方法的用法。
package com.yiibai; import java.util.*; public class LocaleDemo { public static void main(String[] args) { // create a new locale Locale locale = new Locale("ENGLISH", "US"); // print this locale System.out.println("Locale1:" + locale); // print the country of this locale System.out.println("Country:" + locale.getCountry()); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Locale1:english_US Country:US