當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Locale getCountry()用法及代碼示例


Java中的Locale類的getCountry()方法用於獲取指定語言環境的國家或地區代碼。這將是一個空字符串或一個大寫的ISO 3166 2字母代碼或一個UN M.49 3位數代碼。

用法:

LOCALE.getCountry()

參數:此方法不帶任何參數。


返回值:此方法返回給定語言環境的國家或地區代碼;如果語言環境為空,則返回一個空字符串。

以下示例程序旨在說明getCountry()方法的用法:

示例1:

// Java code to illustrate getCountry() method 
  
import java.util.*; 
  
public class Locale_Demo { 
    public static void main(String[] args) 
    { 
  
        // Creating a new locale 
        Locale first_locale 
            = new Locale("English", "UK"); 
  
        // Displaying first locale 
        System.out.println("First Locale: "
                           + first_locale); 
  
        // Displaying the country_code of this locale 
        System.out.println("Country: "
                           + first_locale.getCountry()); 
    } 
}
輸出:
First Locale: english_UK
Country: UK

示例2:

// Java code to illustrate getCountry() method 
  
import java.util.*; 
  
public class Locale_Demo { 
    public static void main(String[] args) 
    { 
  
        // Creating a new locale 
        Locale first_locale 
            = new Locale("English", "India"); 
  
        // Displaying first locale 
        System.out.println("First Locale: "
                           + first_locale); 
  
        // Displaying the country_code of this locale 
        System.out.println("Country: "
                           + first_locale.getCountry()); 
    } 
}
輸出:
First Locale: english_INDIA
Country: INDIA


相關用法


注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 Locale getCountry() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。