关于LocalDateTime
Posted fmhh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于LocalDateTime相关的知识,希望对你有一定的参考价值。
public static void main(String[] args) {
//获取当前时间
LocalDateTime nowTime= LocalDateTime.now();
//自定义时间
LocalDateTime endTime = LocalDateTime.of(2017, 10, 22, 10, 10, 10);
//比较 现在的时间 比 结束时间之后 返回的类型是Boolean类型
SystemnowTime.isAfter(endTime));
//比较 现在的时间 比 结束时间之前 返回的类型是Boolean类型
System.out.println(nowTime.isBefore(endTime));
//比较 两个时间是否相等
System.out.println(nowTime.equals(endTime));
//转换 将LocalDateTime 转成Date
Date.from(nowTime.atZone(ZoneId.systemDefault()).toInstant())
}
以上是关于关于LocalDateTime的主要内容,如果未能解决你的问题,请参考以下文章