从即时值获取瞬时秒的 Java 程序


创建瞬时值并获取 1970-01-01T00:00:00Z 历元以来的时间,以毫秒为单位传入参数。这使用 ofEpochMilli() 完成

Instant instant = Instant.ofEpochMilli(342627282920l);

现在从瞬时值获取瞬时秒

instant.getEpochSecond();

示例

import java.time.Instant;
public class Demo {
   public static void main(String[] args) {
      Instant instant = Instant.ofEpochMilli(342627282920l);
      long res = instant.getEpochSecond();
      System.out.println(res);
   }
}

输出

342627282

更新于: 2019 年 7 月 30 日

193 次浏览

开启你的 职业生涯

完成课程以获得认证

开始
广告