java.time.ZoneOffset.of() 方法示例 java.time.ZoneOffset.isSupported() 方法示例 java.time.ZoneOffset.ofHours() 方法示例 java.time.ZoneOffset.of() 方法示例 package com.codingdict; import java.time.ZoneOffset; public class ZoneOffsetDemo { public static void main(String[] args) { ZoneOffset zone = ZoneOffset.of("Z"); System.out.println(zone); } } java.time.ZoneOffset.isSupported() 方法示例 java.time.ZoneOffset.ofHours() 方法示例