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



描述

java.time.Instant.getEpochSecond() 方法获取 1970-01-01T00:00:00Z 的 Java 起始时间相差的秒数。

申明

以下是 java.time.Instant.getEpochSecond() 方法的申明。

public long getEpochSecond()

返回值

从 1970-01-01T00:00:00Z 起始时间相差的秒数。

示例

以下示例展示了 java.time.Instant.getEpochSecond() 方法的使用。

package com.tutorialspoint;

import java.time.Instant;

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

      Instant instant = Instant.parse("2017-03-03T10:37:30.00Z");
      System.out.println(instant.getEpochSecond());
   }
}

当我们编译并运行以上程序时,会产生以下结果 −

1488537450
广告