Convert java.time.LocalDate into java.util.Date type
问题 I want to convert java.time.LocalDate into java.util.Date type. Because I want to set the date into JDateChooser . Or is there any date chooser that supports java.time dates? 回答1: Date date = Date.from(localDate.atStartOfDay(ZoneId.systemDefault()).toInstant()); That assumes your date chooser uses the system default timezone to transform dates into strings. 回答2: Here's a utility class I use to convert the newer java.time classes to java.util.Date objects and vice versa: import java.time