java.time.ZoneId.getDisplayName() 方法示例 java.time.ZoneId.getAvailableZoneIds() 方法示例 java.time.ZoneId.getId() 方法示例 java.time.ZoneId.getDisplayName() 方法示例 package com.codingdict; import java.time.ZoneId; import java.time.format.TextStyle; import java.util.Locale; public class ZoneIdDemo { public static void main(String[] args) { ZoneId zoneId = ZoneId.of("Z"); System.out.println(zoneId.getDisplayName(TextStyle.SHORT,Locale.ENGLISH)); } } java.time.ZoneId.getAvailableZoneIds() 方法示例 java.time.ZoneId.getId() 方法示例