ZoneId类的getDisplayName()方法用于获取适合呈现给用户的区域的文本表示形式,例如“英国时间”或“ +02:00”。如果未找到文本映射,则返回完整ID。
用法:
public String getDisplayName(TextStyle style, Locale locale)
参数:此方法接受两个参数style和locale,其中style表示所需文本的长度,locale表示要使用的语言环境。
返回值:此方法返回区域的文本值。
以下示例程序旨在说明getDisplayName()方法:
示例1:
// Java program to demonstrate
// ZoneId.getDisplayName() method
import java.time.*;
import java.time.format.TextStyle;
import java.util.Locale;
public class GFG {
public static void main(String[] args)
{
// create ZoneId object
ZoneId zoneId
= ZoneId.of("Europe/Paris");
// get Zone id in style TextStyle.SHORT and
// Locale = Locale.ENGLISH
String response = zoneId.getDisplayName(TextStyle.SHORT, Locale.ENGLISH);
// print result
System.out.println("ZoneId:"
+ response);
}
}
输出:
ZoneId:CET
示例2:
// Java program to demonstrate
// ZoneId.getDisplayName() method
import java.time.*;
import java.time.format.TextStyle;
import java.util.Locale;
public class GFG {
public static void main(String[] args)
{
// create ZoneId object
ZoneId zoneId
= ZoneId.of("Asia/Calcutta");
// get Zone id in style TextStyle.FULL and
// Locale = Locale.FRENCH
String response = zoneId.getDisplayName(TextStyle.FULL,
Locale.FRENCH);
// print result
System.out.println("ZoneId: "
+ response);
}
}
输出:
ZoneId: Inde
相关用法
- Java Calendar getDisplayName()用法及代码示例
- Java TimeZone getDisplayName()用法及代码示例
- Java DayOfWeek getDisplayName()用法及代码示例
- Java ZoneOffset getDisplayName()用法及代码示例
- Java Locale getDisplayName()用法及代码示例
- Java TimeZone getDisplayName(boolean, int)用法及代码示例
- Java ZoneId from()用法及代码示例
- Java ZoneId getRules()用法及代码示例
- Java ZoneId equals()用法及代码示例
- Java ZoneId ofOffset()用法及代码示例
- Java ZoneId systemDefault()用法及代码示例
- Java ZoneId toString()用法及代码示例
- Java ZoneId normalized()用法及代码示例
- Java ZoneId hashCode()用法及代码示例
- Java ZoneId getAvailableZoneIds()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 ZoneId getDisplayName() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。