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