java8 ZonedDateTime时区的使用

只谈情不闲聊 提交于 2020-01-12 19:21:39

ZonedDateTime可以创建带有时区的时间。如:
ZonedDateTime.now(ZoneId.of("Europe/Paris"));

//datetime,date,time
ZonedDateTime paris = ZonedDateTime.now(ZoneId.of("Europe/Paris")); // 欧洲巴黎 +1 时区
ZonedDateTime shanghai = ZonedDateTime.now(ZoneId.of("Asia/Shanghai")); // 亚洲上海 +8 时区
System.out.println(DateTimeFormatter.ISO_DATE_TIME.format(paris));
System.out.println(DateTimeFormatter.ISO_DATE_TIME.format(shanghai));

//local 使用local的作用是直接按照所在zone来格式化,后面不加 +01:00[Europe/Paris] 等内容
System.out.println(DateTimeFormatter.ISO_LOCAL_DATE_TIME.format(paris));
System.out.println(DateTimeFormatter.ISO_LOCAL_DATE.format(paris));
System.out.println(DateTimeFormatter.ISO_LOCAL_TIME.format(paris));

ISO_DATE_TIMEISO_LOCAL_DATE_TIME的区别是:
ISO_LOCAL_DATE_TIME格式化的字符串会加上 时区和时区名称。

ZoneId.of()所需的时区名,列表在java.time.format.ZoneName类的zidMap中。

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!