本篇内容主要讲解“java时间日期的API有哪些”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“java时间日期的API有哪些”吧!
1、Clock提供了访问当前时间和日期的功能。Clock对当前时区敏感,可以用来代替System.currenttimeMillis()获得当前毫秒时间。
Clock clock = Clock.systemDefaultZone();long millis = clock.millis(); Instant instant = clock.instant();Date legacyDate = Date.from(instant); // legacy java.util.Date
2、本地时间类表示没有指定时区的时间。
LocalTime now1 = LocalTime.now(zone1);LocalTime now2 = LocalTime.now(zone2); System.out.println(now1.isBefore(now2)); // false long hoursBetween = ChronoUnit.HOURS.between(now1, now2);long minutesBetween = ChronoUnit.MINUTES.between(now1, now2); System.out.println(hoursBetween); // -3System.out.println(minutesBetween); // -239
3、时区类可以用ZoneId表示。时区类的对象可以通过静态工厂方法轻松获得。
System.out.println(ZoneId.getAvailableZoneIds());// prints all available timezone ids ZoneId zone1 = ZoneId.of("Europe/Berlin");ZoneId zone2 = ZoneId.of("Brazil/East");System.out.println(zone1.getRules());System.out.println(zone2.getRules()); // ZoneRules[currentStandardOffset=+01:00]// ZoneRules[currentStandardOffset=-03:00]
到此,相信大家对“java时间日期的API有哪些”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!