java.time.Instant.toEpochMilli()方法

2019-10-16 22:39:47

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.yiibai;

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