Java 8目前已经开始进入大众的视线,其中笔者在写本文之前,留意到其中Java 8预览版中将会出现新的关于日期和时间的API(遵守JSR?310规范)。在本系列文章中,将对这些新的API进行举例说明。首先在本文中,将先介绍以下几个:Instant,LocalDate,LocalTime和LocalDateTime。
class="dp-j" style="margin-left: 55px; padding-top: 5px; padding-bottom: 5px; color: #5c5c5c; border: none; background-color: #f7f7f7; margin-bottom: 1px !important;">
- Instant?(java.time.Instant)?
?
可能最容易开始学习java.time包中的内容的就是先来看看Instant这个类。所谓的Instant类代表的是某个时间(有点象java.util.Date),它是精确到纳秒的(而不是象旧版本的Date精确到毫秒)。如果使用纳秒去表示一个时间则原来的使用一位Long类型是不足够的,需要占用更多一点的存储空间,然而实际上其内部是由两个Long字段组成,第一个部分保存的是自标准Java计算时代(就是1970年1月1日开始)到现在的秒数,第二部分保存的是纳秒数(永远不会超过999,999,999)。我们看下一个具体的例子:
- ?
- ?
- ?
- Instant?instant?=?Instant.now();
- ?
- System.out.println(instant);
在Open JDK 中运行上面的代码,可以有如下格式的输出:2013-06-25T16:22:52.966Z,可以看到,输入了更为精确的日期。下面的例子是更多的关于Instant类的用法,如
- ?
- Instant?instant?=?Instant.ofEpochMilli(new?Date().getTime());?
- ?
- instant?=?Instant.parse("1995-10-23T10:12:35Z");?
?
注意,在上面的例子中,有一个字符串中创建Instant类型的时间,但Instant代表的是一个时间,并不包括时区的概念,所以必须传入的是符合UTC格式的字符串)。Instant API也提供了一些很有用的方法允许使用Instant和其他包中的类进行一些运算,下面是例子:
- instant.plus(Duration.ofHours(5).plusMinutes(4));?
?
上面表达的含义为,将现在的时间加上5个小时4分钟。
那么这个例子中,使用了多少个java.time.Instant实例呢?答案是两个。Java.time这个包是线程安全的并且和其他大部分类一样是不可变类。Instant也遵守这个规则,因此plus方法产生一个新的实例,如:
- Instant?instant1?=?instant.plus(Duration.ofHours(5).plusMinutes(4));?
- System.out.println("Instant?is?immutable,?so?instant==instant?returns:?"?+?(instant?==?instant1));?
?
?
输出为:
- Instant?is?immutable,?so?instant==instant?returns:?false?
?
?
下面是更多关于计算的例子:
- ?
- instant.minus(5,?ChronoUnit.DAYS);??
- instant.minus(Duration.ofDays(5));??
- ?
- ?
- long?diffAsMinutes?=?instant.periodUntil(instant1,?ChronoUnit.MINUTES);??
- long?diffAsMinutes?=?ChronoUnit.MINUTES.between(instant,?instant1);??
?
Instant是可比较的,这意味着可以对两个Instant进行比较。它提供了isAfter()和isBefore()两个方法进行比较,如下代码所示:
- ?
- System.out.format("instant1.compareTo(instant)=%d.%n",?instant1.compareTo(instant));?
- ?
- ?
- System.out.format("instant1.isAfter(instant)=%b,?instant1.isBefore(instant)=%b.%n",??
- ?instant1.isAfter(instant),?instant1.isBefore(instant))?
?
?
输出结果:
- instant1.compareTo(instant)=1.?
- instant1.isAfter(instant)=true,?instant1.isBefore(instant)=false?
?
?
Localdate和LocalTime
?
LocalDate表示不带时区的日期,比如1-1-2000。LocalTime表示不带时区的时间,比如04:44:50.12,和之前提到的Instant类是从1970年计算偏移量不同,这两个类的输出是人们习惯阅读的日期和时间。有很多种方法去获得LocalTime和LocalDate的实例,如
- LocalDate?localDate?=?LocalDate.now();?
- localDate?=?LocalDate.ofYearDay(2005,?86);??
- localDate?=?LocalDate.of(2013,?Month.AUGUST,?10);??
- LocalTime?localTime?=?LocalTime.of(22,?33);??
- localTime?=?LocalTime.now();?
- localTime?=?LocalTime.ofSecondOfDay(4503);?
?
LocalDate和LocalTime和Instant一样遵守同样的线程规定―― 如它们的实例子都是不可变的。LocalDate和LocalTime和Instant有同样的计算和比较方法(其中有些方法是在java.time.temporal.Temporal接口中定义的,并且上面这些类都实现了这些方法):
- LocalDate?localDate1?=?localDate.plus(5,?ChronoUnit.HOURS);?
- localDate.isBefore(localDate1);?
?
LocalDateTime
?
最后来看下在简单日期和时间类中最重要的一个:LocalDataTeime。它是LocalDate和LocalTime的组合体,表示的是不带时区的日期及时间。看上去,LocalDateTime和Instant很象,但记得的是“Instant中是不带时区的即时时间点。可能有人说,即时的时间点不就是日期+时间么?看上去是这样的,但还是有所区别,比如LocalDateTime对于用户来说,可能就只是一个简单的日期和时间的概念,考虑如下的例子:两个人都在2013年7月2日11点出生,第一个人是在英国出生,而第二个是在加尼福利亚,如果我们问他们是在什么时候出生的话,则他们看上去都是在同样的时间出生(就是LocalDateTime所表达的),但如果我们根据时间线(如格林威治时间线)去仔细考察,则会发现在出生的人会比在英国出生的人稍微晚几个小时(这就是Instant所表达的概念,并且要将其转换为UTC格式的时间)。除此之外,LocalDateTime的用法和上述介绍的其他类都很相似,如下例子所示:
- LocalDateTime?localDateTime?=?LocalDateTime.now();?
- ?
- ?
- ?
- LocalDateTime?inTheFuture?=?localDateTime.plusHours(25).plusMinutes(3);?
- ?
- ?
- ?
- System.out.println(localDateTime.toLocalTime().plusHours(25).plusMinutes(3));?
- ?
- System.out.println(localDateTime.toLocalDate().plusMonths(2));?
- ?
- ?
- ?
- System.out.println(localDateTime.toLocalTime().plus(Duration.ofHours(25).plusMinutes(3)));?
- System.out.println(localDateTime.toLocalDate().plus(Period.ofMonths(2)));?