将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());
上一篇: linux内核 hash表的基本使用
下一篇: Python本地时间与UTC时间转换