Java LocalDateTime和Date互转
LocalDateTime dateToLocalDateTime(Date dateToConvert) {
return dateToConvert.toInstant()
.atZone(ZoneId.systemDefault())
.toLocalDateTime();
}
long localDateTimeToTimeStamp(LocalDateTime time){
return time.atZone(ZoneId.systemDefault()).toInstant().toEpochMilli();
}
Date localDateTimeToDate(LocalDateTime time){
return Date.from(time.atZone( ZoneId.systemDefault()).toInstant());
}