创建一个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