标签:set print 获取 lan int 应用程序 lang ant now()
在时间线上的瞬间点。该类在时间线上建立单个瞬时点。 这可能用于在应用程序中记录事件时间戳。
//now() 获取本初子午线的时间
Instant instant = Instant.now();
System.out.println(instant); //中时区 2021-03-09T02:02:46.596Z
//添加时间偏移量
OffsetDateTime offsetDateTime = instant.atOffset(ZoneOffset.ofHours(8));
System.out.println(offsetDateTime); //东八区 2021-03-09T10:02:46.596+08:00
long milli = instant.toEpochMilli();
System.out.println(milli); //1615255366596
//通过时间戳获取时间 ----- 本初子午线的时间
Instant instant1 = Instant.ofEpochMilli(1615198793505L);
System.out.println(instant1); //2021-03-08T10:19:53.505Z
标签:set print 获取 lan int 应用程序 lang ant now()
原文地址:https://www.cnblogs.com/yukiasuna/p/14504076.html