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
广告