欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

将UTC时间转换为本地时间

程序员文章站 2024-01-23 14:47:10
...
Instant instant = Instant.now();

ZonedDateTime zonedDateTime = instant.atZone(ZoneId.of("GMT+08:00"));
System.out.println(zonedDateTime.getHour());
System.out.println(zonedDateTime.getMinute());

ZonedDateTime zonedDateTime1 = instant.atZone(ZoneId.of("GMT+07:00"));
System.out.println(zonedDateTime1.getHour());
System.out.println(zonedDateTime1.getMinute());
相关标签: java