写在前头
最近部门要求代码要更加严格的规范化,使得我有机会接触到 jdk8 中新增的一些method、class,惊呼NB!
决意就一篇笔记 记录一下 …
No.1 使用LocateDateTime 设置时间,精确到时分秒
主要功能是在应对某些条件查询时,需要查询某个时间范围符合条件的结果,需要对“结束”时间做一个调整(毕竟前端有时传给你的只是yyyy-dd-mm,你懂得~~)
之前使用的是Calendar来对时间进行设置,不过存在一定的风险。
话不多说,上代码~
public static Date changeTime(Date date){
//设置查询条件的结束时间 时分秒为当天的23:59:59
// 之前的代码,会报出“警告”
// Calendar calendar = Calendar.getInstance();
// calendar.setTime(date);
// calendar.set(Calendar.HOUR_OF_DAY, 23);
// calendar.set(Calendar.MINUTE, 59);
// calendar.set(Calendar.SECOND, 59);
// 下边是JDK8
ZoneId zoneId = ZoneId.systemDefault();
String dateStr = new SimpleDateFormat(Constants.sdf_pattern).format(date);
LocalDateTime time = LocalDateTime.parse(dateStr,DateTimeFormatter.ofPattern(Constants.sdf_pattern));
time = time.withHour(23);
time = time.withMinute(59);
time = time.withSecond(59);
ZonedDateTime zonedDateTime = time.atZone(zoneId);
date = Date.from(zonedDateTime.toInstant());
return date;
}
测试:
@Test
public void testMethod(){
Date date = new Date();
System.out.println("date = " + date);
date = changeTime(date);
System.out.println("date = " + date);
}
结果:
date = Tue Sep 17 11:27:19 CST 2019
date = Tue Sep 17 23:59:59 CST 2019