LocalDate 转 date
LocalDate today = LocalDate.parse(dataTime); ZoneId zone = ZoneId.systemDefault(); Instant instant = today.atStartOfDay().atZone(zone).toInstant(); Calendar calendar =...