Java 8中的时间处理
Posted 草木物语
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java 8中的时间处理相关的知识,希望对你有一定的参考价值。
Java 8中的时间处理
在Java8中, 新的时间及?期API位于java.time包中, 该包中有哪些重要的类。 分别代表了什么?
Instant
: 时间戳
Duration
: 持续时间, 时间差
LocalDate
: 只包含?期, ?如: 2016-10-20
LocalTime
: 只包含时间, ?如: 22:15:16
LocalDateTime
: 包含?期和时间, ?如: 2016-10-20 22:15:16
Period
: 时间段
ZoneOffset
: 时区偏移量, ?如: +8:00
ZonedDateTime
: 带时区的时间
Clock
: 时钟, ?如获取?前美国纽约的时间
LocalTime 和 LocalDate的区别?
LocalDate
表??期, 年??, LocalTime
表?时间, 时分 秒
获取当前时间
在Java8中,使用如下方式获取当前时间:
LocalDate today = LocalDate.now(); int year = today.getYear(); int month = today.getMonthValue(); int day = today.getDayOfMonth(); System.out.printf("Year : %d Month : %d day : %d t %n", year,month, day);
创建指定日期的时间
LocalDate date = LocalDate.of(2018, 01, 01);
检查闰年
直接使?LocalDate的isLeapYear即可判断是否闰年
LocalDate nowDate = LocalDate.now(); //判断闰年 boolean leapYear = nowDate.isLeapYear();
计算两个?期之间的天数和?数
在Java 8中可以?java.time.Period类来做计算。
Period period = Period.between(LocalDate.of(2018, 1, 5),LocalDate.of(2018, 2, 5));
以上是关于Java 8中的时间处理的主要内容,如果未能解决你的问题,请参考以下文章
错误记录Android Studio 编译报错 ( Could not determine java version from ‘11.0.8‘. | Android Studio 降级 )(代码片段
错误记录Android Studio 编译报错 ( Could not determine java version from ‘11.0.8‘. | Android Studio 降级 )(代码片段
PCL异常处理:pcl 1.8.13rdpartyoostincludeoost-1_64oost ypeofmsvc ypeof_impl.hpp(125): error(代码片段