当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。