java.time.ZonedDateTime.from() 方法示例 java.time.ZonedDateTime.format() 方法示例 java.time.ZonedDateTime.get() 方法示例 java.time.ZonedDateTime.from() 方法示例 package com.codingdict; import java.time.ZonedDateTime; public class ZonedDateTimeDemo { public static void main(String[] args) { ZonedDateTime date = ZonedDateTime.from(ZonedDateTime.now()); System.out.println(date); } } java.time.ZonedDateTime.format() 方法示例 java.time.ZonedDateTime.get() 方法示例