当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java 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

相关用法


注:本文由纯净天空筛选整理自 java.time.Instant.toEpochMilli() Method Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。