JDK8-日期时间新方式
日期时间新方式
在日常开发中,对于日期操作是非常常见的,但是对于有经验的开发人员来说Java8之前的日期操作是有较大问题 的。比方说SimpleDateFormat。但是在Java8之后提出了DateTimeFormatter用于解决之前的问题。
SimpleDateFormat的那些坑
SimpleDateFormat本身是线程不安全的,同时继承的DateFormat类也不是线程安全的,在多线程环境下,如果多个线程使用同一个类解析日期,如果将SimpleDateFormat定义为static,所以在多线程下它的实例会被多线程共享,线程之间相互读取时间,就会出现时间差异和其他的那些异常。
DateTimeFormatter 、LocalDate、LocalTime、LocalDateTime
Java8对于日期时间操作提供了一些新类供我们进行使用,现在可以通过DateTimeFormatter来替换掉 SimpleDateFormat。通过LocalDate、LocalTime、LocalDateTime类来操作日期+时间。而且由源码可知,这些类都是不可变更,线程安全的类。其内部提供了若干用于操作日期的方法。
DateTimeFormatter 、LocalDate、LocalTime、LocalDateTime的常用方法
/**
* @author 我是七月呀
* @date 2020/12/28
*/
public class LocalDateDemp {
public static void main(String[] args) {
/**
* 根据自己需求获取任意时间,例如:2020-12-28 14:57:00
*
*/
LocalDateTime of = LocalDateTime.of(2020, 12, 28, 14, 57, 00);
String format = of.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
System.out.println(format);
/**
* 注意:这里的YYYY是表示:当天所在的周属于的年份,一周从周日开始,周六结束,只要本周跨年,那么这周就算入下一年。
* 结果为:2020-12-28 15:39:37
*/
String formatOne = of.format(DateTimeFormatter.ofPattern("YYYY-MM-dd HH:mm:ss"));
System.out.println(formatOne);
/**
* 获取当前时间的年月日 时分秒,例如:2020-12-28 15:39:37
*/
DateTimeFormatter dateTimeFormatter1 = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String format1 = dateTimeFormatter1.format(LocalDateTime.now());
System.out.println(format1);
/**
* 获取当前时间的年月日,例如:2020-12-28
*/
DateTimeFormatter dateTimeFormatter2 = DateTimeFormatter.ofPattern("yyyy-MM-dd");
String format2 = dateTimeFormatter2.format(LocalDateTime.now());
System.out.println(format2);
/**
* 获取当前时间的时分秒,例如:15:39:37
*/
DateTimeFormatter dateTimeFormatter3 = DateTimeFormatter.ofPattern("HH:mm:ss");
String format3 = dateTimeFormatter3.format(LocalDateTime.now());
System.out.println(format3);
/**
* 获取当前时间的年月日 时分秒(无符号),例如:20201228153937
*/
DateTimeFormatter dateTimeFormatter4 = DateTimeFormatter.ofPattern("yyyyMMddHHmmss");
String format4 = dateTimeFormatter4.format(LocalDateTime.now());
System.out.println(format4);
/**
* 获取当前时间的年月日(无符号),例如:20201228
*/
DateTimeFormatter dateTimeFormatter5 = DateTimeFormatter.ofPattern("yyyyMMdd");
String format5 = dateTimeFormatter5.format(LocalDateTime.now());
System.out.println(format5);
/**
* 获取当前时间三天后的日期,例如:2020-12-31T15:39:37.807
* 这里的ChronoUnit.DAYS是时间单位,可以是WEEKS、MONTHS、YEARS
*/
LocalDateTime plus = LocalDateTime.now().plus(3, ChronoUnit.DAYS);
System.out.println(plus);
/**
* 获取当前时间三天前的日期,例如:2020-12-25T15:39:37.807
* 这里的ChronoUnit.DAYS是时间单位,可以是WEEKS、MONTHS、YEARS
*/
LocalDateTime plus1 = LocalDateTime.now().minus(3, ChronoUnit.DAYS);
System.out.println(plus1);
/**
* 获取指定时间当年的最后一天,例如:2020-12-31 23:59:59
*/
String format6 = dateTimeFormatter1.format(LocalDateTime.now().with(TemporalAdjusters.lastDayOfYear()).withHour(23).withMinute(59).withSecond(59));
System.out.println(format6);
/**
* 获取指定时间当年的第一天,例如:2020-01-01 00:00:00
*/
String format7 = dateTimeFormatter1.format(LocalDateTime.now().with(TemporalAdjusters.firstDayOfYear()).withHour(00).withMinute(00).withSecond(00));
System.out.println(format7);
String format8 = dateTimeFormatter1.format(LocalDateTime.now().withDayOfYear(1).withHour(00).withMinute(00).withSecond(00));
System.out.println(format8);
/**
* 获取指定时间的前三天,例如:2020-12-25
*/
LocalDate minus = LocalDate.now().minus(3, ChronoUnit.DAYS);
System.out.println(minus);
LocalDate localDate = LocalDate.now().minusDays(3);
System.out.println(localDate);
LocalDateTime minus1 = LocalDateTime.now().minus(3, ChronoUnit.DAYS);
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
String format9 = minus1.format(dateTimeFormatter);
System.out.println(format9);
/**
* 获取指定时间的后三天,例如:2020-12-31
*/
LocalDate plus2 = LocalDate.now().plus(3, ChronoUnit.DAYS);
System.out.println(plus2);
LocalDate localDate1 = LocalDate.now().plusDays(3);
System.out.println(localDate1);
LocalDateTime plus3 = LocalDateTime.now().plus(3, ChronoUnit.DAYS);
DateTimeFormatter dateTimeFormatter6 = DateTimeFormatter.ofPattern("yyyy-MM-dd");
String format10 = plus3.format(dateTimeFormatter6);
System.out.println(format10);
}
}
JDK8-日期时间新方式的更多相关文章
- JDK8日期时间操作小汇总
统一使用java.time.*包下的类 1.获取当前的日期.时间.日期加时间 LocalDate todayDate = LocalDate.now(); //今天的日期 LocalTime now ...
- Java8新特性_日期时间新类 LocalDate、LocalTime、LocalDateTime
import java.text.SimpleDateFormat; import java.time.LocalDate; import java.time.format.DateTimeForma ...
- Spring 日期时间处理
1 Spring自身的支持 1.1 factory-bean <bean id="dateFormat" class="java.text.SimpleDateFo ...
- jdk8环境下sprngboot/springmvc中JSR310新日期/时间类LocalDateTime显示效果带T
如图所示: 日期时间类中带了一个T,以上这种格式LocalDateTime格式化的时候默认日期时间格式:ISO.DATE_TIME(按笔者目前的知识理解是ISO8601规范中的日期时间格式化) 想要把 ...
- JDK8中新日期时间API
它们面临的问题是:可变性:像日期和时间这样的类应该是不可变的.偏移性:Date中的年份是从1900开始的,而月份都从0开始.格式化:格式化只对Date有用,Calendar则不行.此外,它们也不是线程 ...
- 详解 JDK8 新增的日期时间类
JDK8 新增的日期时间类 在本人之前的博文<处理时间的类 -- System类.Date类 .SimpleDateFormat类 与 Calendar类>中,讲到过表示时间的类,有三类: ...
- JDK8 新增的日期时间API
背景 JDK8中增加了一套全新的日期时间API,这里进行总结下,方便查询使用. 新的时间及日期API位于 java.time 包中,下面是一些关键类. Instant:代表的是时间戳. LocalDa ...
- 【java】JDK1.8时间日期库 新特性 所有java中时间Date的使用
除了lambda表达式,stream以及几个小的改进之外,Java 8还引入了一套全新的时间日期API,在本篇教程中我们将通过几个简单的任务示例来学习如何使用java 8的这套API.Java对日期, ...
- Java日期时间API系列7-----Jdk8中java.time包中的新的日期时间API类的特点
1.不变性 新的日期/时间API中,所有的类都是不可变的,这对多线程环境有好处. 比如:LocalDateTime 2.关注点分离 新的API将人可读的日期时间和机器时间(unix timestamp ...
随机推荐
- C++语言中std::array的神奇用法总结,你需要知道!
摘要:在这篇文章里,将从各个角度介绍下std::array的用法,希望能带来一些启发. td::array是在C++11标准中增加的STL容器,它的设计目的是提供与原生数组类似的功能与性能.也正因此, ...
- leetcode_3FizzBuzz的一些思考
题目很简单,给定一个正整数n,如果n能整除3的话往list里加入Fizz,如果n能整除5的话往list里面加入Buzz,如果即能整除3又能整除5的话,加入FizzBuzz,代码也很简单 public ...
- XOR性质
异或XOR的性质: 1. 交换律 2. 结合律 3. x^x = 0 -> 偶数个异或为0 4. x^0 = x -> 奇数个异或为本身 5. 自反性:a^b^b = a^0 =a
- 【PSMA】Progressive Sample Mining and Representation Learning for One-Shot Re-ID
目录 主要挑战 主要的贡献和创新点 提出的方法 总体框架与算法 Vanilla pseudo label sampling (PLS) PLS with adversarial learning Tr ...
- 【NOIP2017提高A组模拟9.17】猫
[NOIP2017提高A组模拟9.17]猫 题目 Description 信息组最近猫成灾了! 隔壁物理组也拿猫没办法. 信息组组长只好去请神刀手来帮他们消灭猫.信息组现在共有n 只猫(n 为正整数) ...
- Java 安全之Java Agent
Java 安全之Java Agent 0x00 前言 在前面发现很多技术都会去采用Java Agent该技术去做实现,比分说RASP和内存马(其中一种方式).包括IDEA的这些破解都是基于Java A ...
- 第三十二章、使用splitDockWidget和tabifyDockWidget嵌套布局QDockWidget的PyQt人机对话案例
专栏:Python基础教程目录 专栏:使用PyQt开发图形界面Python应用 专栏:PyQt入门学习 老猿Python博文目录 一.引言 在第<第三十一章.containers容器类部件QDo ...
- 第8.22节 Python案例详解:重写 “富比较”方法控制比较逻辑
一. 案例说明 本节定义一个小汽车的类Car,类中包括车名carname.百公里油耗oilcostper100km.价格price三个属性.然后实现__lt__.__gt__.__le__.__ge_ ...
- 第9.3节 Python的文件行读取:readline
一. 语法 readline(size=-1) readline函数顾名思义就是从文件内读取一行,用来处理文本文件读取的典型方法之一,但readline可不只是读取文本文件,也能读取二进制文件,只是在 ...
- 第11.23节 Python 中re模块的搜索替换功能:sub及subn函数
一. 引言 在<第11.3节 Python正则表达式搜索支持函数search.match.fullmatch.findall.finditer>重点介绍了几个搜索函数,除了搜索,re模块也 ...