java.time.Instant.toEpochMilli() 方法
描述
java.time.Instant.toEpochMilli() 方法将此瞬间转换为从 1970-01-01T00:00:00Z 开始的毫秒数。
声明
以下是 java.time.Instant.toEpochMilli() 方法的声明。
public long toEpochMilli()
返回值
自 1970-01-01T00:00:00Z 纪元以来的毫秒数。
异常
ArithmeticException − 如果发生数字溢出。
示例
下面的例子展示了 java.time.Instant.toEpochMilli() 方法的使用。
package com.tutorialspoint; import java.time.Instant; public class InstantDemo { public static void main(String[] args) { Instant instant = Instant.parse("2014-12-03T10:15:30.00Z"); System.out.println(instant.toEpochMilli()); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
1417601730000