Java模块系列:时间模块(LocalDateTime)

1 简介

LocalDateTime时间模块,是Java8的新功能,推荐使用,Springboot项目可较好支持LocaDateTime与MySQL数据库时间DATETIME交互,若使用SSM,建议使用Date与MySQL时间DATETIME交互.

2 包

import java.time.LocaDateTime;
import java.time.format.DateTimeFormatter;
import java.time.ZoneOffset;

2 获取当前时间:now()

LocalDateTime now = LocalDateTime.now();
System.out.println("Local Date time:"+now);
System.out.println("Local date time string:" + now.toString());
  • 结果
Local Date time:2020-08-23T14:01:14.319
Local date time string:2020-08-23T14:01:14.319

3 获取时间戳:秒toEpochSecond()

Long secondsTimestamp = LocalDateTime.now().toEpochSecond(ZoneOffset.of("+8"));
System.out.println("Seconds:"+secondsTimestamp);
  • 结果
Seconds:1598162474

4 时间格式转指定格式字符串:format()

4.1 LocalDateTime时间转字符串

DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String currentTime = LocalDateTime.now().format(dtf);
System.out.println("Current time:"+currentTime);
  • 结果
Current time:2020-08-23 14:01:14

4.2 秒转指定格式时间字符串

Long secondsCompare = 1597835368L;
LocalDateTime secondsFormat = LocalDateTime.ofEpochSecond(secondsCompare, 0, ZoneOffset.ofHours(8));    
String timeFromSeconds = secondsFormat.format(dtf);
System.out.println("Time from seconds:" + timeFromSeconds);
  • 结果
Time from seconds:2020-08-19 19:09:28

5 LocalDateTime格式时间字符串转为指定时间格式:parse()

LocalDateTime ldtTime = LocalDateTime.parse("2020-08-20T14:23:28.963");
System.out.println("Specific time:" + ldtTime);
String ldtStr = ldtTime.format(dtf);
System.out.println("Local date time string:" + ldtStr);
  • 结果
Specific time:2020-08-20T14:23:28.963
Local date time string:2020-08-20 14:23:28

6 时间范围比较

6.1 时间转换

Long secondsCompare = 1597835368L;
LocalDateTime secondsFormat = LocalDateTime.ofEpochSecond(secondsCompare, 0, ZoneOffset.ofHours(8));
LocalDateTime now = LocalDateTime.now();

6.2 左区间判断:isBefore()

if(now.isBefore(secondsFormat)){
    System.out.println("Now before given time.");
 }else{
     System.out.println("Now after given time.");
 }
  • 结果
Now after given time.

6.3 右区间判断:isAfter()

if(now.isAfter(secondsFormat)){
    System.out.println("Now after given time.");
}else{
     System.out.println("Now before given time.");
}
  • 结果
Now after given time.

6.4 秒钟先后判断

不是多次一举,LocalDateTime的比较,需将将数据统一转换为LocaDateTime对象,和Tensorflow1.x意向

Long secondsCompare = 1597835368L;
Long secondsCompereAnother = 1598162474L;
LocalDateTime secondsFormat = LocalDateTime.ofEpochSecond(secondsCompare, 0, ZoneOffset.ofHours(8));
LocalDateTime secondsFormatAnother = LocalDateTime.ofEpochSecond(secondsCompereAnother, 0, ZoneOffset.ofHours(8));
if(secondsFormatAnother.isBefore(secondsFormat)){
    System.out.println("Another time before given time.");
}else{
     System.out.println("Anohter time after given time.");
}
  • 结果
Anohter time after given time.

6.5 相等判断:isEqual()

LocalDateTime ldt1 = LocalDateTime.now();
LocalDateTime ldt2 = LocalDateTime.of(2020, 8, 10, 10, 10);
if(ldt1.isEqual(ldt2)){
    System.out.println("ldt1 is equal to ldt2.");
}else{
    System.out.println("ldt1 is not equal to ldt2");
}
  • 结果
ldt1 is not equal to ldt2

7 特定格式时间字符串转LocalDateTime

String dateTemp = "2020-08-20 10:10:10";
LocalDateTime localDateTimeTemp = LocalDateTime.parse(dateTemp, dtf);
System.out.println("LocalDateTime parse time string:" + localDateTimeTemp);
String datetimeFromLocalDateTime = localDateTimeTemp.format(dtf);
System.out.println("Date transform from LocaDateTime:" + datetimeFromLocalDateTime);
  • 结果
LocalDateTime parse time string:2020-08-20T10:10:10
Date transform from LocaDateTime:2020-08-20 10:10:10

8 小结

  • 字符串时间使用LocalDateTime解析,需要使用parse方法现将字符串转为LocalDateTime对象;
  • LocalDateTime时间对象的方法,可以解决常用的时间处理,比如isBefore(),format(),isEquals();

【参考文献】

[1]https://docs.oracle.com/javase/8/docs/api/java/time/LocalDateTime.html
[2]https://www.cnblogs.com/chuzihang/p/8276983.html
[3]https://blog.csdn.net/wangruoao/article/details/100566071
[4]https://www.cnblogs.com/qingmuchuanqi48/p/12056200.html

package com.aapoint.util; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; import java.time.temporal.TemporalAdjusters; public class LocalDateTimeUtil { /** * 比较 localDateTime2 是否在localDateTime1之前(比较大小) * @param localDateTime1 * @param localDateTime2 * @return */ public static Boolean compare(LocalDateTime localDateTime1,LocalDateTime localDateTime2){ return localDateTime1.isBefore(localDateTime2); } /** * 获取当前月份前/后的月份的第一天 * @param i 指定距离当前月份的时间 * @param state 状态 0.当月 1.前 2.后 * @return */ public static String firstDay(Integer state,Integer i){ LocalDateTime date = null; //type 类型 0.月 1.天 2.小时 3.分钟 4.秒 date = getLocalDateTime(state,0,i); //获取该月份的第一天 String firstDay = date.with(TemporalAdjusters.firstDayOfMonth()).format(DateTimeFormatter.ofPattern("yyyy-MM-dd")); // System.out.println("第一天为:"+firstDay); return firstDay; } /** * 获取当前月份前/后的月份的最后一天 * @param i 指定距离当前月份的时间 * @param state 状态 0.当月 1.前 2.后 * @return */ public static String lastDay(Integer state,Integer i){ LocalDateTime date = null; //type 类型 0.月 1.天 2.小时 3.分钟 4.秒 date = getLocalDateTime(state,0,i); //获取该月份的最后一天 String lastDay = date.with(TemporalAdjusters.lastDayOfMonth()).format(DateTimeFormatter.ofPattern("yyyy-MM-dd")); // System.out.println("最后一天为:"+lastDay); return lastDay; } /** * 获取当时间前/后的时间(天) * @param i 指定距离当前月份的时间 * @param state 状态 0.当月 1.前 2.后 * @return */ public static String obtainDay(Integer state,Integer i){ LocalDateTime date = null; //type 类型 0.月 1.天 2.小时 3.分钟 4.秒 date = getLocalDateTime(state,1,i); //获取天 String day = date.format(DateTimeFormatter.ofPattern("yyyy-MM-dd")); // System.out.println("获取的时间为(天):"+day); return day; } /** * 获取当时间前/后的时间(小时) * @param i 指定距离当前月份的时间 * @param state 状态 0.当月 1.前 2.后 * @return */ public static String obtainHours(Integer state,Integer i){ LocalDateTime date = null; //type 类型 0.月 1.天 2.小时 3.分钟 4.秒 date = getLocalDateTime(state,2,i); //获取该月份的最后一天 String hours = date.format(DateTimeFormatter.ofPattern("HH:mm:ss")); // System.out.println("获取的时间为(小时):"+hours); return hours; } /** * 获取当时间前/后的时间(小时) * @param i 指定距离当前月份的时间 * @param state 状态 0.当月 1.前 2.后 * @return */ public static String obtainMinutes(Integer state,Integer i){ LocalDateTime date = null; //type 类型 0.月 1.天 2.小时 3.分钟 4.秒 date = getLocalDateTime(state,3,i); //获取该月份的最后一天 String minutes = date.format(DateTimeFormatter.ofPattern("HH:mm:ss")); // System.out.println("获取的时间为(分钟):"+minutes); return minutes; } /** * 获取当时间前/后的时间(小时) * @param i 指定距离当前月份的时间 * @param state 状态 0.当月 1.前 2.后 * @return */ public static String obtainSeconds(Integer state,Integer i){ LocalDateTime date = null; //type 类型 0.月 1.天 2.小时 3.分钟 4.秒 date = getLocalDateTime(state,4,i); //获取该月份的最后一天 String seconds = date.format(DateTimeFormatter.ofPattern("HH:mm:ss")); // System.out.println("获取的时间为(秒):"+seconds); return seconds; } public static void main(String[] args) { System.out.println("当前时间为:"+LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"))); System.out.println("前一个月份的第一天为:"+LocalDateTimeUtil.firstDay(1,1)); System.out.println("前一个月份的最后一天为:"+LocalDateTimeUtil.lastDay(1,1)); System.out.println("当前时间的前一天为:"+LocalDateTimeUtil.obtainDay(1,1)); System.out.println("当前时间的后一天为:"+LocalDateTimeUtil.obtainDay(2,1)); System.out.println("当前时间的前一小时为:"+LocalDateTimeUtil.obtainHours(1,1)); System.out.println("当前时间的后一小时为:"+LocalDateTimeUtil.obtainHours(2,1)); System.out.println("当前时间的前一分钟为:"+LocalDateTimeUtil.obtainMinutes(1,1)); System.out.println("当前时间的后一分钟为:"+LocalDateTimeUtil.obtainMinutes(2,1)); System.out.println("当前时间的前一秒为:"+LocalDateTimeUtil.obtainSeconds(1,1)); System.out.println("当前时间的后一秒为:"+LocalDateTimeUtil.obtainSeconds(2,1)); } private static LocalDateTime getLocalDateTime(Integer state,Integer type,Integer i) { LocalDateTime date; if(state == 0){ date = LocalDateTime.now(); }else if(state == 1){ if(type == 0) { //获取月 date = LocalDateTime.now().minusMonths(i); }else if(type == 1){ //获取天 date = LocalDateTime.now().minusDays(i); }else if(type == 2){ //获取小时 date = LocalDateTime.now().minusHours(i); }else if(type == 3){ //获取分钟 date = LocalDateTime.now().minusMinutes(i);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

天然玩家

坚持才能做到极致

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值