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


Java TimeZone getDisplayName(Locale locale)用法及代碼示例


Java中的TimeZone類的getDisplayName(Locale locale_time)方法用於獲取該TimeZone的特定名稱,該名稱易於由用戶在用戶傳遞的指定語言環境中理解。該名稱適用於演示和顯示。

用法:

public final String getDisplayName(Locale locale_time)

參數:該方法采用Locale對象類型的一個參數locale_time,表示要在其中提供顯示名稱的語言環境。


返回值:該方法以指定的語言環境返回TimeZone的顯示名稱。

下麵的程序演示了TimeZone的getDisplayName()方法的用法:
範例1:

// Java code to illustrate getDisplayName() 
  
import java.util.*; 
  
public class TimeZone_Demo { 
    public static void main(String args[]) 
    { 
  
        // Creating a time zone object 
        TimeZone timezone 
            = TimeZone 
                  .getTimeZone( 
                      "Asia/India"); 
  
        // Creating the locale 
        Locale locale 
            = new Locale("ENGLISH", 
                         "USA"); 
  
        // Getting a display name for specified locale 
        String display_name 
            = timezone 
                  .getDisplayName(locale); 
  
        // Display name 
        System.out.println("The Display name"
                           + " for the locale is:"
                           + display_name); 
    } 
}
輸出:
The Display name for the locale is:Greenwich Mean Time

範例2:

// Java code to illustrate getDisplayName() 
  
import java.util.*; 
  
public class TimeZone_Demo { 
    public static void main(String args[]) 
    { 
  
        // Creating a time zone object 
        TimeZone timezone 
            = TimeZone 
                  .getTimeZone("Australia/Sydney"); 
  
        // Creating the locale 
        Locale locale = new Locale("ENGLISH", 
                                   "Australia"); 
  
        // Getting a display name 
        // for specified locale 
        String display_name 
            = timezone 
                  .getDisplayName(locale); 
  
        // Display name 
        System.out.println("The Display name"
                           + " for the locale is:"
                           + display_name); 
    } 
}
輸出:
The Display name for the locale is:
Australian Eastern Standard Time (New South Wales)

參考: https://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html#getDisplayName(java.util.Locale)



相關用法


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