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