java.time.Instant.ofEpochMilli() 方法示例



描述

java.time.Instant.ofEpochMilli(long epochMilli) 方法获取一个即时,它使用的是自 1970-01-01T00:00:00Z 以来的毫秒数。

声明

以下是 java.time.Instant.ofEpochMilli(long epochMilli) 方法的声明。

public static Instant ofEpochMilli(long epochMilli)

参数

epochMilli − 自 1970-01-01T00:00:00Z 以来的毫秒数。

返回值

即时,非空。

异常

DateTimeException − 如果即时超过最大或最小即时。

示例

以下示例显示了如何使用 java.time.Instant.ofEpochMilli(long epochMilli) 方法。

package com.tutorialspoint;

import java.time.Instant;

public class InstantDemo {
   public static void main(String[] args) {

      Instant instant = Instant.ofEpochMilli(10000);
      System.out.println(instant);   
   }
}

让我们编译并运行以上程序,这将产生以下结果 −

1970-01-01T00:00:10Z
广告