java 1.8 发布时间_java1.8新特性之时间API

public classTest { public static voidmain(String[] args) { /**

*(一) Clock 时钟 * Clock类提供了访问当前日期和时间的方法,Clock是时区敏感的,可以用来取代 System.currentTimeMillis() 来获取当前的微秒数。 * 某一个特定的时间点也可以使用Instant类来表示,Instant类也可以用来创建老的java.util.Date对象。 */

Clock clock =Clock.systemDefaultZone(); long millis =clock.millis(); System.out.println(millis+":"+System.currentTimeMillis()); Instant instant =clock.instant(); Date legacyDate = Date.from(instant); //legacy java.util.Date

System.out.println(legacyDate);

/**

*(二)Timezones 时区 * 在新API中时区使用ZoneId来表示。时区可以很方便的使用静态方法of来获取到。 * 时区定义了到UTS时间的时间差,在Instant时间点对象到本地日期对象之间转换的时候是极其重要的。 */

System.out.println(ZoneId.getAvailableZoneIds());//输出所有的时区

ZoneId zone1 = ZoneId.of("Europe/Berlin"); ZoneId zone2 = ZoneId.of("Brazil/East"); System.out.println(zone1.getRules());//输出ZoneRules[currentStandardOffset=+01:00]

System.out.println(zone2.getRules());//输出ZoneRules[currentStandardOffset=-03:00]

/**

*(三)LocalTime 本地时间 何问起 * LocalTime 定义了一个没有时区信息的时间,例如 晚上10点,或者 17:30:15。 * 下面的例子使用前面代码创建的时区创建了两个本地时间。之后比较时间并以小时和分钟为单位计算两个时间的时间差: */

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); //-2

System.out.println(minutesBetween); //-179

/**LocalTime 提供了多种工厂方法来简化对象的创建,包括解析时间字符串。 * */

LocalTime late = LocalTime.of(23, 59, 59); System.out.println(late); //23:59:59

DateTimeFormatter germanFormatter =

DateTimeFormatter .ofLocalizedTime(FormatStyle.SHORT) .withLocale(Locale.GERMAN); LocalTime leetTime = LocalTime.parse("13:37", germanFormatter); System.out.println(leetTime); //13:37

/**

* (四)LocalDate 本地日期 * LocalDate 表示了一个确切的日期,比如 2014-03-11。该对象值是不可变的,用起来和LocalTime基本一致。 * 下面的例子展示了如何给Date对象加减天/月/年。另外要注意的是这些对象是不可变的,操作返回的总是一个新实例。 */

LocalDate today =LocalDate.now(); LocalDate tomorrow = today.plus(1, ChronoUnit.DAYS); LocalDate yesterday = tomorrow.minusDays(2); System.out.println(yesterday); LocalDate independenceDay = LocalDate.of(2014, Month.JULY, 4); DayOfWeek dayOfWeek =independenceDay.getDayOfWeek(); System.out.println(dayOfWeek); //FRIDAY

DateTimeFormatter germanFormatter1 =

DateTimeFormatter .ofLocalizedDate(FormatStyle.MEDIUM) .withLocale(Locale.GERMAN); LocalDate xmas = LocalDate.parse("24.12.2014", germanFormatter1); System.out.println(xmas); //2014-12-24 //用这种方式比以前使用日期的要方便多了

/**

* (五)LocalDateTime 本地日期时间 * LocalDateTime 同时表示了时间和日期,相当于前两节内容合并到一个对象上了。 * LocalDateTime和LocalTime还有LocalDate一样,都是不可变的。LocalDateTime提供了一些能访问具体字段的方法。 */

LocalDateTime sylvester = LocalDateTime.of(2014, Month.DECEMBER, 31, 23, 59, 59); DayOfWeek dayOfWeek1 =sylvester.getDayOfWeek(); System.out.println(dayOfWeek1); //WEDNESDAY

Month month =sylvester.getMonth(); System.out.println(month); //DECEMBER

long minuteOfDay =sylvester.getLong(ChronoField.MINUTE_OF_DAY); System.out.println(minuteOfDay); //1439

/**

* 只要附加上时区信息,就可以将其转换为一个时间点Instant对象,Instant时间点对象可以很容易的转换为老式的java.util.Date。 */

Instant instant1 =sylvester .atZone(ZoneId.systemDefault()) .toInstant(); Date legacyDate1 =Date.from(instant1); System.out.println(legacyDate1); //Wed Dec 31 23:59:59 CET 2014

/**

* 格式化LocalDateTime和格式化时间和日期一样的,除了使用预定义好的格式外,我们也可以自己定义格式: */

DateTimeFormatter formatter =

DateTimeFormatter .ofPattern("MMM dd, yyyy - HH:mm"); LocalDateTime parsed = LocalDateTime.parse("Nov 03, 2014 - 07:13", formatter); String string =formatter.format(parsed); System.out.println(string); //Nov 03, 2014 - 07:13

//和java.text.NumberFormat不一样的是新版的DateTimeFormatter是不可变的,所以它是线程安全的。 //关于时间日期格式的详细信息:http://download.java.net/jdk8/docs/api/java/time/format/DateTimeFormatter.html

//java jdk1.8新提供的这个time在某些时候还是有好处的

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值