📌  相关文章
📜  Java中的 ZoneId getDisplayName() 方法及示例

📅  最后修改于: 2022-05-13 01:55:38.719000             🧑  作者: Mango

Java中的 ZoneId getDisplayName() 方法及示例

ZoneId类的getDisplayName()方法用于获取适合呈现给用户的区域的文本表示,例如“英国时间”或“+02:00”。如果未找到文本映射,则返回完整 ID .

句法:

public String getDisplayName(TextStyle style, Locale locale)

参数:此方法接受两个参数stylelocale ,其中 style 表示所需文本的长度, locale 表示要使用的语言环境。

返回值:该方法返回区域的文本值。

下面的程序说明了 getDisplayName() 方法:

方案一:

// 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

方案二:

// 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

参考: https://docs.oracle.com/javase/10/docs/api/java Java .time.format.TextStyle, Java Java)