JDK8 新日期和时间 API

目录

一、旧版日期时间 API 存在的问题

二、新日期时间 API介绍

三、JDK 8的日期和时间类

LocalDate写法

LocalTime写法

LocalDateTime写法

对日期时间的修改,使用withAttribute方法

日期时间的比较

四、JDK 8的时间格式化与解析

五、JDK 8的 Instant 类

六、JDK 8的计算日期时间差类

七、JDK 8的时间校正器

八、JDK 8设置日期时间的时区

小结


一、旧版日期时间 API 存在的问题

  1. 设计很差: 在java.util和java.sql的包中都有日期类,java.util.Date同时包含日期和时间,而java.sql.Date仅包含日期。此外用于格式化和解析的类在java.text包中定义
  2. 非线程安全:java.util.Date 是非线程安全的,所有的日期类都是可变的
  3. 时区处理麻烦:日期类并不提供国际化,没有时区支持,因此Java引入了java.util.Calendar和java.util.TimeZone类

二、新日期时间 API介绍

JDK 8中增加了一套全新的日期时间API,这套API设计合理,是线程安全的。新的日期及时间API位于 java.time 包中,下面是一些关键类。
LocalDate :表示日期,包含年月日,格式为 2019-10-16
LocalTime :表示时间,包含时分秒,格式为 16:38:54.158549300
LocalDateTime :表示日期时间,包含年月日,时分秒,格式为 2018-09-06T15:33:56.750
DateTimeFormatter :日期时间格式化类。
Instant:时间戳,表示一个特定的时间瞬间。
Duration:用于计算2个时间(LocalTime,时分秒)的距离
Period:用于计算2个日期(LocalDate,年月日)的距离
ZonedDateTime :包含时区的时间

Java中使用的历法是ISO 8601日历系统,它是世界民用历法,也就是我们所说的公历。平年有365天,闰年是366天。

此外Java 8还提供了4套其他历法,分别是:
ThaiBuddhistDate:泰国佛教历
MinguoDate:中华民国历
JapaneseDate:日本历
HijrahDate:伊斯兰历

三、JDK 8的日期和时间类

LocalDate、LocalTime、LocalDateTime类的实例是不可变的对象,分别表示使用 ISO-8601 日历系统的日期、时间、日期和时间。它们提供了简单的日期或时间,并不包含当前的时间信息,也不包含与时区相关的信息。

LocalDate写法

    // LocalDate:获取日期时间的信息。格式为 2024-05-10@Testpublic void test01() {// 创建指定日期LocalDate date = LocalDate.of(2024, 5, 10);System.out.println("date = " + date); // 2024-05-10// 得到当前日期LocalDate nowDate = LocalDate.now();System.out.println("nowDate = " + nowDate); // 2024-05-12// 获取日期信息System.out.println("年: " + nowDate.getYear());System.out.println("月: " + nowDate.getMonthValue());System.out.println("日: " + nowDate.getDayOfMonth());System.out.println("星期: " + nowDate.getDayOfWeek());}

LocalTime写法

    // LocalTime类: 获取时间信息。格式为 16:38:54.158549300@Testpublic void test02() {// 得到指定的时间LocalTime time = LocalTime.of(12,15, 28, 129_900_000);System.out.println("time = " + time);// 得到当前时间LocalTime nowTime = LocalTime.now();System.out.println("nowTime = " + nowTime);// 获取时间信息System.out.println("小时: " + nowTime.getHour());System.out.println("分钟: " + nowTime.getMinute());System.out.println("秒: " + nowTime.getSecond());System.out.println("纳秒: " + nowTime.getNano());}

LocalDateTime写法

    @Testpublic void test03() {LocalDateTime dateTime = LocalDateTime.of(2024, 5, 12, 14, 25, 20);System.out.println("dateTime = " + dateTime);//2024-05-12T14:25:20// 得到当前日期时间LocalDateTime now = LocalDateTime.now();//2024-05-12T14:25:44.890System.out.println("now = " + now);System.out.println(now.getYear());System.out.println(now.getMonthValue());System.out.println(now.getDayOfMonth());System.out.println(now.getHour());System.out.println(now.getMinute());System.out.println(now.getSecond());System.out.println(now.getNano());}

对日期时间的修改,使用withAttribute方法

对已存在的LocalDate对象,创建它的修改版,最简单的方式是使用withAttribute方法。
withAttribute方法会创建对象的一个副本,并按照需要修改它的属性。以下所有的方法都返回了一个修改属性的对象,他们不会影响原来的对象

    // LocalDateTime类: 对日期时间的修改@Testpublic void test05() {LocalDateTime now = LocalDateTime.now();System.out.println("now = " + now);// 修改日期时间LocalDateTime setYear = now.withYear(2049);System.out.println("修改年份: " + setYear);System.out.println("now == setYear: " + (now == setYear));System.out.println("修改月份: " + now.withMonth(6));System.out.println("修改小时: " + now.withHour(9));System.out.println("修改分钟: " + now.withMinute(11));// 再当前对象的基础上加上或减去指定的时间LocalDateTime localDateTime = now.plusDays(5);System.out.println("5天后: " + localDateTime);System.out.println("now == localDateTime: " + (now == localDateTime));System.out.println("10年后: " + now.plusYears(10));System.out.println("20月后: " + now.plusMonths(20));System.out.println("20年前: " + now.minusYears(20));System.out.println("5月前: " + now.minusMonths(5));System.out.println("100天前: " + now.minusDays(100));}

日期时间的比较

    // 日期时间的比较@Testpublic void test06() {// 在JDK8中,LocalDate类中使用isBefore()、isAfter()、equals()方法来比较两个日期,可直接进行比较。LocalDate now = LocalDate.now();LocalDate date = LocalDate.of(2018, 8, 8);System.out.println(now.isBefore(date)); // false 当前对象在之前返回true,否则返回falseSystem.out.println(now.isAfter(date)); // true 当前对象在之后返回true,否则返回false}

四、JDK 8的时间格式化与解析

通过 java.time.format.DateTimeFormatter 类可以进行日期时间解析与格式化。

    // 日期格式化@Testpublic void test04() {// 得到当前日期时间LocalDateTime now = LocalDateTime.now();DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");// 将日期时间格式化为字符串String format = now.format(formatter);System.out.println("format = " + format);// 将字符串解析为日期时间LocalDateTime parse = LocalDateTime.parse("2024-05-12 10:12:22", formatter);System.out.println("parse = " + parse);}

五、JDK 8的 Instant 类

Instant 时间戳/时间线,内部保存了从1970年1月1日 00:00:00以来的秒和纳秒。

    // 时间戳@Testpublic void test07() {Instant now = Instant.now();System.out.println("当前时间戳 = " + now);// 获取从1970年1月1日 00:00:00的秒System.out.println(now.getNano());System.out.println(now.getEpochSecond());System.out.println(now.toEpochMilli());System.out.println(System.currentTimeMillis());Instant instant = Instant.ofEpochSecond(5);System.out.println(instant);}

六、JDK 8的计算日期时间差类

Duration/Period类: 计算日期时间差。
1. Duration:用于计算2个时间(LocalTime,时分秒)的距离
2. Period:用于计算2个日期(LocalDate,年月日)的距离

    // Duration/Period类: 计算日期时间差@Testpublic void test08() {// Duration计算时间的距离LocalTime now = LocalTime.now();LocalTime time = LocalTime.of(14, 15, 20);Duration duration = Duration.between(time, now);System.out.println("相差的天数:" + duration.toDays());System.out.println("相差的小时数:" + duration.toHours());System.out.println("相差的分钟数:" + duration.toMinutes());System.out.println("相差的秒数:" + duration.getSeconds());// Period计算日期的距离LocalDate nowDate = LocalDate.now();LocalDate date = LocalDate.of(1998, 8, 8);// 让后面的时间减去前面的时间Period period = Period.between(date, nowDate);System.out.println("相差的年:" + period.getYears());System.out.println("相差的月:" + period.getMonths());System.out.println("相差的天:" + period.getDays());}

七、JDK 8的时间校正器

需要将日期调整到下月的某一天,通过时间校正器来进行

  • TemporalAdjuster : 时间校正器。
  • TemporalAdjusters : 该类通过静态方法提供了大量的常用TemporalAdjuster的实现。
    // TemporalAdjuster类:自定义调整时间@Testpublic void test09() {LocalDateTime now = LocalDateTime.now();// 得到下一个月的第一天TemporalAdjuster firsWeekDayOfNextMonth = temporal -> {LocalDateTime dateTime = (LocalDateTime) temporal;LocalDateTime nextMonth = dateTime.plusMonths(1).withDayOfMonth(1);System.out.println("nextMonth = " + nextMonth);return nextMonth;};LocalDateTime nextMonth = now.with(firsWeekDayOfNextMonth);System.out.println("nextMonth = " + nextMonth);}

八、JDK 8设置日期时间的时区

Java8 中加入了对时区的支持,LocalDate、LocalTime、LocalDateTime是不带时区的,带时区的日期时间类分别为:ZonedDate、ZonedTime、ZonedDateTime。

    // 设置日期时间的时区@Testpublic void test10() {// 1.获取所有的时区ID// ZoneId.getAvailableZoneIds().forEach(System.out::println);// 不带时间,获取计算机的当前时间LocalDateTime now = LocalDateTime.now(); // 中国使用的东八区的时区.比标准时间早8个小时System.out.println("now = " + now);// 2.操作带时区的类// now(Clock.systemUTC()): 创建世界标准时间ZonedDateTime bz = ZonedDateTime.now(Clock.systemUTC());System.out.println("bz = " + bz);// now(): 使用计算机的默认的时区,创建日期时间ZonedDateTime now1 = ZonedDateTime.now();System.out.println("now1 = " + now1); // 2019-10-19T16:19:44.007153500+08:00[Asia/Shanghai]// 使用指定的时区创建日期时间ZonedDateTime now2 = ZonedDateTime.now(ZoneId.of("America/Vancouver"));System.out.println("now2 = " + now2); // 2019-10-19T01:21:44.248794200-07:00[America/Vancouver]}

小结

JDK 8新的日期和时间 API的优势:
1. 新版的日期和时间API中,日期和时间对象是不可变的。操纵的日期不会影响老值,而是新生成一个实例。
2. 新的API提供了两种不同的时间表示方式,有效地区分了人和机器的不同需求。
3. TemporalAdjuster可以更精确的操纵日期,还可以自定义日期调整器。
4. 是线程安全的

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/10857.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Elasticsearch 8.1官网文档梳理 -综述

积累 Elasticsearch 的常用知识,以及日常维护、学习用到的 API。因为相关内容太多,所以根据模块整理成了不同的文章,并在这里做汇总,整个系列的文章都会持续更新 目录 Elasticsearch 8.1官网文档梳理 - 四、Set up Elasticsearc…

树莓派遇到ping的奇葩问题解决办法

首先,先 ping raspberrypi 一下。获得树莓派的ip 然后开始配置静态ip winR后输入命令ipconfig查询当前网关ip 输入命令sudo nano /etc/dhcpcd.conf 在最末尾输入以下信息 -----------------------------------------------------------------------------------…

JavaScript中的事件监听

文章目录 事件监听事件类型鼠标触发类型案例——轮播图表单获得光标类型类型案例——点击搜索框获得下拉表单键盘触发类型效果展示表单输入触发类型案例——统计表单字符数量 事件对象常用属性环境对象回调函数 事件监听 事件:在编程时系统内发生的动作&#xff0c…

ubuntu bind9 主从配置

主配置 (master) # cat /etc/bind/named.conf.local zone "xxx.com" {type master;file "/var/lib/bind/xxx.com.hosts";also-notify {172.17.151.242; // 从IP};};# cat /var/lib/bind/xxx.com.hosts $ttl 3600 xxx.com. I…

多态的学习

1. 🏷多态的概念 多态的概念: 通俗来说,就是多种形态,具体点就是去完成某个行为,当不同的对象去完成时会 产生出不同的状态。 举个栗子:比如买票这个行为,当普通人买票时,是全价买票…

将Flutter程序打包为ios应用并进行安装使用

如果直接执行flutter build ios: Building com.example.myTimeApp for device (ios-release)...════════════════════════════════════════════════════════════════════════════════No vali…

Web自动化 - selenium

文章目录 一、selenium的使用selenium的安装 二、元素1. 定位选择元素1.id 定位2. class_name 定位find_element 和 find_elements的区别3. TAG_NAME 定位4. 超链接 定位 2. 操控元素1. 查询内容2. 获取元素文本内容3. 获取元素属性 3. 浏览器常用操作API4. 鼠标操作 - perform…

[力扣题解]134. 加油站

题目&#xff1a;134. 加油站 思路 贪心法&#xff1b; 代码 暴力法 class Solution { public:int canCompleteCircuit(vector<int>& gas, vector<int>& cost) {int i, rest, index, size;size gas.size();for(i 0; i < size; i){// 从 i 开始//…

Python 全栈系列244 nginx upstream 负载均衡 踩坑日记

说明 最初是因为租用算力机(Python 全栈系列242 踩坑记录:租用算力机完成任务)&#xff0c;所以想着做一个负载均衡&#xff0c;然后多开一些服务&#xff0c;把配置写在nginx里面就好了。 一开始租用了一个3080起了一个服务&#xff0c;后来觉得速度不够快&#xff0c;再起了…

DOM 文档对象模型

一、DOM简介 1、什么是DOM DOM 文档对象模型简称&#xff0c;是W3C组织推荐的处理可扩展标记语言的标准编程接口 W3C已经定义了一系列的DOM接口&#xff0c;通过这些接口可以改变网页的内容、结构、样式 2、DOM树 DOM把以上内容都看做是对象 二、获取元素 获取页面元素&am…

day001 ~如何修改主机名

命令行方式设置主机名 # 这个很重要&#xff01;用命令改方便些 hostnamectl set-hostname ocloud-252 #查询&#xff0c;exit或logout重新登录后发现主机名换掉 hostname nmtui方式修改 nmtui 在工作中,如果机器很多,最好修改主机名做好标识不至于弄混,方便管理.

TensorFlow运行bug汇总

1、ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1 解决方案 pip install urllib31.26.15 -i https://pypi.tuna.tsinghua.edu.cn/simple 升级或者降级 (TF2.1) C:\Users\Administrator>pip install urllib31.26.15 -i https://pypi.tuna.tsinghua.edu.cn/sim…

LeetCode—用队列实现栈

一.题目 二.思路 1.后入先出的实现&#xff1a; 创建两个队列来实现栈&#xff08;后入先出&#xff09;&#xff1a; 两个队列&#xff0c;保持一个存数据&#xff0c;另一个为空&#xff0c;入数据&#xff08;push&#xff09;要入不为空的队列&#xff0c;&#xff08;p…

DDS块集是如何工作的?

DDS块集使你能够在Simulink中创建DDS应用程序。如果你有一个在Simulink中建模的应用程序&#xff0c;希望能够使用DDS&#xff0c;则可以使用DDS块集轻松连接到DDS中间件平台。 DDS块集将DDS概念引入Simulink环境&#xff0c;在Simulink应用程序中对这些概念进行建模&#xff0…

java实体类中,不对应数据库的实体类字段

TableField(exist false) 是 MyBatis Plus 中的注解&#xff0c;用于标记实体类中的字段是否映射到数据库表中的字段。在这个注解中&#xff0c;exist 属性默认为 true&#xff0c;表示该字段在数据库表中存在。而当设置为 false 时&#xff0c;表示该字段不会映射到数据库表中…

STM32串口通信入门

文章目录 一、串口协议和RS-232标准&#xff0c;以及RS232电平与TTL电平的区别1.串口通信协议2.RS-232标准3.RS232电平与TTL电平的区别4.USB/TTL转232“模块&#xff08;CH340芯片为例&#xff09; 二、补充实验&#xff08;一&#xff09;几个常见的库函数、结构体1.时钟配置函…

【机器学习数据可视化-04】Pyecharts数据可视化宝典

一、引言 在大数据和信息爆炸的时代&#xff0c;数据可视化成为了信息传递和展示的关键手段。通过直观的图表和图形&#xff0c;我们能够更好地理解数据&#xff0c;挖掘其背后的信息。Pyecharts&#xff0c;作为一款基于Python的数据可视化库&#xff0c;凭借其丰富的图表类型…

代码随想录刷题笔记

目录 四数相加2&#xff08;Leetcode454&#xff09; 四数相加2&#xff08;Leetcode454&#xff09; public int fourSumCount(int[] nums1, int[] nums2, int[] nums3, int[] nums4) {int cnt 0;Map<Integer,Integer> map new HashMap();/** 这一步用来存 数组1和数…

多模态EDA论文小记

论文地址 该论文主要改进点是&#xff1a;通过动态化局部搜索中每个集群大小&#xff0c;高斯和柯西分布共同产生个体。总的来说改进点不多&#xff0c;当然也可能是笔者还没发现。 局部搜索 划分集群 划分集群有两个策略分别是&#xff1a; 随机生成一个点作为中心点&…

MySQL表死锁查询语句

步骤1&#xff1a;查询表死锁的sql语句&#xff1a; SELECT * FROM information_schema.PROCESSLIST where length(info) >0 ; 或 SELECT * FROM information_schema.INNODB_TRX; 步骤2&#xff1a;删除 kill "对应的线程id"