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