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


Java ZoneOffset getDisplayName()用法及代碼示例


ZoneOffset類的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) 
    { 
  
        // Get the ZoneOffset instance 
        ZoneOffset zoneOffset 
            = ZoneOffset.of("+05:30"); 
  
        // get Zone id in style TextStyle.SHORT and 
        // Locale = Locale.ENGLISH 
        String response 
            = zoneOffset.getDisplayName(TextStyle.SHORT, 
                                        Locale.ENGLISH); 
  
        // print result 
        System.out.println("Display Name: "
                           + response); 
    } 
}
輸出:
Display Name: +05:30

示例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) 
    { 
  
        // Get the ZoneOffset instance 
        ZoneOffset zoneOffset 
            = ZoneOffset.of("+05:30"); 
  
        // get Zone id in style TextStyle.FULL and 
        // Locale = Locale.FRENCH 
        String response = zoneOffset.getDisplayName(TextStyle.FULL, 
                                                    Locale.FRENCH); 
  
        // print result 
        System.out.println("Display Name: "
                           + response); 
    } 
}
輸出:
Display Name: +05:30

參考: Oracle Doc



相關用法


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