Java 程序从 Instant 获取毫秒


创建一个 Instant,并使用 1970-01-01T00:00:00Z 以纪元作为参数传递的毫秒来获取 Instant。这是通过 ofEpochMilli() 完成的

Instant instant = Instant.ofEpochMilli(342627282920l);

现在,从 Instant 获取纪元毫秒

instant. toEpochMilli();

示例

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

输出

1262347200000

更新时间:2019 年 7 月 30 日

190 次浏览

开始你的 职业生涯

通过完成课程获得认证

立即开始
广告