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


Java TimeZone getDisplayName(boolean, int)用法及代碼示例


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

用法:

public final String 
    getDisplayName(boolean daylight, 
                   int style)

參數:該方法有兩個參數:


  • daylight:這是布爾類型,並指定該值是否為true,然後返回夏令時名稱,否則返回false。
  • style:這是LONG或SHORT,表示顯示樣式

返回值:該方法以用戶可讀的指定語言環境返回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.getDefault(); 
  
        // Getting a display name for the specified locale 
        String display_name 
            = timezone 
                  .getDisplayName(true, 0); 
  
        // Display name 
        System.out.println("The Display name"
                           + " for the locale is:"
                           + display_name); 
    } 
}
輸出:
The Display name for the locale is:UTC

範例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( 
                      "Asia/India"); 
  
        // Getting a display name for the specified locale 
        String display_name 
            = timezone 
                  .getDisplayName(true, 1); 
  
        // Display name 
        System.out.println("The Display name"
                           + " for the locale is:"
                           + display_name); 
    } 
}
輸出:
The Display name for the locale is:Greenwich Mean Time

參考:https://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html#getDisplayName(boolean, %20int)



相關用法


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