LocalDateTime相关处理,得到零点以及24点值,最近五分钟点位,与Date互转,时间格式
Posted cassie-wang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LocalDateTime相关处理,得到零点以及24点值,最近五分钟点位,与Date互转,时间格式相关的知识,希望对你有一定的参考价值。
最近一直使用LocalDateTime,老是忘记怎么转换,仅此记录一下
import java.time.Instant; import java.time.LocalDateTime; import java.time.LocalTime; import java.time.ZoneId; import java.time.format.DateTimeFormatter; import java.util.Date; public class Test { public static void main(String[] args) { LocalDateTime now = LocalDateTime.now(); System.out.println("当前时间: "+now); //时间格式 DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"); System.out.println("formate: "+ now.format(formatter)); //当天的零点 System.out.println("当天的零点: "+LocalDateTime.of(now.toLocalDate(), LocalTime.MIN)); //当天的最后时间 System.out.println("当天的最后时间: "+LocalDateTime.of(now.toLocalDate(), LocalTime.MAX)); //最近的五分钟点位 Integer minute = now.getMinute(); minute = minute/5*5; System.out.println("最近的五分钟点位: "+LocalDateTime.of(now.getYear(), now.getMonth(), now.getDayOfMonth(), now.getHour(), minute, 0)); //Date转为LocalDateTime Date date = new Date(); Instant instant = date.toInstant(); ZoneId zoneId = ZoneId.systemDefault(); System.out.println("Date转为LocalDateTime: "+instant.atZone(zoneId).toLocalDateTime()); } }
以上是关于LocalDateTime相关处理,得到零点以及24点值,最近五分钟点位,与Date互转,时间格式的主要内容,如果未能解决你的问题,请参考以下文章
LocalDateTime , ZonedDateTime 和时间戳
java获取当前时间的方法:LocalDateTimeDateCalendar,以及三者的比较
MySQL数据库datetime与LocalDateTime的映射与处理
第十三天下(日期Data,SimpleDateFormat,LocalDateTime,计算年月日Period,计算时分秒Duration,异常两种处理方式,Throwable,自定义异常)