Java8之前关于时间的处理主要使用Date和Calender类,但相当麻烦;在JDK8中提供了新的api,使时间操作变得简单.下面介绍下涉及到的类和它们的使用方法:
ClockClock提供了对当前时间和日期的访问功能。Clock是对当前时区敏感的,并可用于替代System.currentTimeMillis()方法来获取当前的毫秒时间。当前时间线上的时刻可以用Instance类来表示。Instance也能够用于创建原先的java.util.Date对象。Clockclock=Clock.systemDefaultZone();longmillis=clock.millis();
Instantinstant=clock.instant();DatelegacyDate=Date.from(instant);//legacyjava.util.DateTimezones时区类可以用一个ZoneId来表示。时区类的对象可以通过静态工厂方法方便地获取。时区类还定义了一个偏移量,用来在当前时刻或某时间与目标时区时间之间进行转换。
System.out.println(ZoneId.getAvailableZoneIds());//printsallavailabletimezoneids
ZoneIdzone1=ZoneId.of("Europe/Berlin");ZoneIdzone2=ZoneId.of("Brazil/East");System.out.println(zone1.getRules());System.out.println(zone2.getRules());
//ZoneRules[currentStandardOffset=+01:00]//ZoneRules[currentStandardOffset=-03:00]LocalTime本地时间类表示一个没有指定时区的时间,例如,10p.m.或者17:30:15,下面的例子会用上面的例子定义的时区创建两个本地时间对象。然后我们会比较两个时间,并计算它们之间的小时和分钟的不同。
LocalTimenow1=LocalTime.now(zone1);LocalTimenow2=LocalTime.now(zone2);
System.out.println(now1.isBefore(now2));//false
longhoursBetween=ChronoUnit.HOURS.between(now1,now2);longminutesBetween=ChronoUnit.MINUTES.between(now1,now2);
System.out.println(hoursBetween);//-3System.out.println(minutesBetween);//-239LocalTime是由多个工厂方法组成,其目的是为了简化对时间对象实例的创建和操作,包括对时间字符串进行解析的操作。
LocalTimelate=LocalTime.of(23,59,59);System.out.println(late);//23:59:59
DateTimeFormattergermanFormatter=
DateTimeFormatter
.ofLocalizedTime(FormatStyle.SHORT)
.withLocale(Locale.GERMAN);
LocalTimeleetTime=LocalTime.parse("13:37",germanFormatter);System.out.println(leetTime);//13:37LocalDate本地时间表示了一个独一无二的时间,例如:2014-03-11。这个时间是不可变的,与LocalTime是同源的。下面的例子演示了如何通过加减日,月,年等指标来计算新的日期。记住,每一次操作都会返回一个新的时间对象。
LocalDatetoday=LocalDate.now();LocalDatetomorrow=today.plus(1,ChronoUnit.DAYS);LocalDateyesterday=tomorrow.minusDays(2);
LocalDateindependenceDay=LocalDate.of(2014,Month.JULY,4);DayOfWeekdayOfWeek=independenceDay.getDayOfWeek();System.out.println(dayOfWeek);//FRIDAYParsingaLocalDatefromastringisjustassimpleasparsingaLocalTime:解析字符串并形成LocalDate对象,这个操作和解析LocalTime一样简单。
DateTimeFormattergermanFormatter=
DateTimeFormatter
.ofLocalizedDate(FormatStyle.MEDIUM)
.withLocale(Locale.GERMAN);
LocalDatexmas=LocalDate.parse("24.12.2014",germanFormatter);System.out.println(xmas);//2014-12-24LocalDateTimeLocalDateTime表示的是日期-时间。它将刚才介绍的日期对象和时间对象结合起来,形成了一个对象实例。LocalDateTime是不可变的,与LocalTime和LocalDate的工作原理相同。我们可以通过调用方法来获取日期时间对象中特定的数据域。
LocalDateTimesylvester=LocalDateTime.of(2014,Month.DECEMBER,31,23,59,59);
DayOfWeekdayOfWeek=sylvester.getDayOfWeek();System.out.println(dayOfWeek);//WEDNESDAY
Monthmonth=sylvester.getMonth();System.out.println(month);//DECEMBER
longminuteOfDay=sylvester.getLong(ChronoField.MINUTE_OF_DAY);System.out.println(minuteOfDay);//1439如果再加上的时区信息,LocalDateTime能够被转换成Instance实例。Instance能够被转换成以前的java.util.Date对象。
Instantinstant=sylvester
.atZone(ZoneId.systemDefault())
.toInstant();
DatelegacyDate=Date.from(instant);System.out.println(legacyDate);//WedDec3123:59:59CET2014格式化日期-时间对象就和格式化日期对象或者时间对象一样。除了使用预定义的格式以外,我们还可以创建自定义的格式化对象,然后匹配我们自定义的格式。
DateTimeFormatterformatter=
DateTimeFormatter
.ofPattern("MMMdd,yyyy-HH:mm");
LocalDateTimeparsed=LocalDateTime.parse("Nov03,2014-07:13",formatter);Stringstring=formatter.format(parsed);System.out.println(string);//Nov03,2014-07:13不同于java.text.NumberFormat,新的DateTimeFormatter类是不可变的,也是线程安全的。
领取专属 10元无门槛券
私享最新 技术干货