码迷,mamicode.com
首页 > 编程语言 > 详细

java8方式日期比较

时间:2018-11-20 19:38:41      阅读:576      评论:0      收藏:0      [点我收藏+]

标签:als   col   方式   exce   pre   equal   datetime   isa   try   


  static ZoneId ZONEID_BJ = ZoneId.of("GMT+08:00");

  private
boolean sameDate(Date d1, Date d2){ try { return ZonedDateTime.ofInstant(d1.toInstant(), ZONEID_BJ).toLocalDate().isEqual( ZonedDateTime.ofInstant( d2.toInstant(), ZONEID_BJ) .toLocalDate()); } catch (Exception e) { return false; } } private boolean compareDate(Date d1, Date d2){ try { return ZonedDateTime.ofInstant(d1.toInstant(), ZONEID_BJ).toLocalDate().isAfter( ZonedDateTime.ofInstant( d2.toInstant(), ZONEID_BJ) .toLocalDate()); } catch (Exception e) { return false; } }

 

java8方式日期比较

标签:als   col   方式   exce   pre   equal   datetime   isa   try   

原文地址:https://www.cnblogs.com/mleaf/p/9990638.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!