时间:2021-05-20
前言
最近在重构之前的一个老项目,其中包含一个统计模块,需要把存储在MongoDB的数据通过接口显示在后端管理系统中。这些数据大多是以时间为单位进行存储,例如:collectionName_202009collectionName_20200910,在老系统中对时间的处理使用Date类,简单了解了其中的时间工具类,深感繁琐并决定使用Java8中的LocalDateTime和LocalDate重构此代码。
基本使用
1.获取当前时间
// 2020-08-23T20:14:56.977 LocalDateTime localDateTime = LocalDateTime.now(); //2020-08-23 LocalDate localDate = LocalDate.now();2.格式化时间
LocalDateTime localDateTime = LocalDateTime.now(); DateTimeFormatter localDateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss", Locale.SIMPLIFIED_CHINESE); // 2020-08-23 20:20:29 String timeStr = localDateTime.format(localDateTimeFormatter); LocalDate localDate = LocalDate.now(); DateTimeFormatter localDateFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd"); // 2020-08-23 String dateStr = localDate.format(localDateFormatter);3.获取昨天、明天或者固定天数的时间
LocalDateTime localDateTime = LocalDateTime.now(); DateTimeFormatter localDateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss", Locale.SIMPLIFIED_CHINESE); // 今天 String time = localDateTime.format(localDateTimeFormatter); // 昨天 LocalDateTime yesterday = localDateTime.minusDays(1L); String yesterdayStr = yesterday.format(localDateTimeFormatter); // 后天 LocalDateTime tomorrow = localDateTime.plusDays(1L); String tomorrowStr = tomorrow.format(localDateTimeFormatter); // 天数加5 LocalDateTime timePlus = localDateTime.plusDays(5L); String timePlusStr = timePlus.format(localDateTimeFormatter); // 天数减5 LocalDateTime timeMinus = localDateTime.minusDays(5L); String timeMinusStr = timeMinus.format(localDateTimeFormatter);在LocalDateTime的API中包含了对各个时间单位的增加和减少,如:
4.获取今天的开始时间和结束时间,精确到秒
DateTimeFormatter localDateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss", Locale.SIMPLIFIED_CHINESE); // 2020-08-23 00:00:00 String start = LocalDateTime.of(LocalDate.now(), LocalTime.MIN).format(localDateTimeFormatter); // 2020-08-23 23:59:59 String end = LocalDateTime.of(LocalDate.now(), LocalTime.MAX).format(localDateTimeFormatter); // 这里的LocalDate.now()表示获取今天的开始时间和结束时间,也可以换做任何一天5.获取当月的第一天和最后一天
// 这里使用LocalDate来获取日期 DateTimeFormatter localDateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd", Locale.SIMPLIFIED_CHINESE); LocalDate localDate = LocalDate.now(); LocalDate firstDay = localDate.with(TemporalAdjusters.firstDayOfMonth()); LocalDate lastDay = localDate.with(TemporalAdjusters.lastDayOfMonth());6.将时间字符串转为时间或日期
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss", Locale.SIMPLIFIED_CHINESE); String str = "2018-08-09 20:10:10"; LocalDateTime localDateTime = LocalDateTime.parse(str, formatter); LocalDate localDate = LocalDate.parse(str, formatter);7.计算日期间隔
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd", Locale.SIMPLIFIED_CHINESE); String str = "2020-09-02"; LocalDate localDate = LocalDate.parse(str, formatter); long until = LocalDate.now().until(localDate, ChronoUnit.DAYS);以上就是Java8 日期和时间类的基本使用的详细内容,更多关于Java 日期和时间类的资料请关注其它相关文章!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
LocalDate、LocalTime、LocalDateTime是Java8开始提供的时间日期API,主要用来优化Java8以前对于时间日期的处理操作。然而,
这是我总结的Java8日期工具类,应该是比较全面的,满足日常开发绝大部分需求,分享给大家,有错误之处,还望大神指教。/***Java8日期时间工具类**@aut
简述时间日期处理是平时工作中使用非常频繁的逻辑,Java8中提供的新的时间类LocalDateTime和LocalDate,使日期处理可以更简单。友情提醒下,业
一.简述在Java8中,我们可以使用以下类来计算日期时间差异:1.Period2.Duration3.ChronoUnit二.Period类主要是Period类
一、简述首先,Java8引入了java.time.LocalDate来表示一个没有时间的日期。其次,使用Java8版本,还需要更新java.sql.Date,以