java.time.Instant.ofEpochMilli() Method Example



Description

The java.time.Instant.ofEpochMilli(long epochMilli) method obtains an instance of Instant using milliseconds from the epoch of 1970-01-01T00:00:00Z.

Declaration

Following is the declaration for java.time.Instant.ofEpochMilli(long epochMilli) method.

public static Instant ofEpochMilli(long epochMilli)

Parameters

epochMilli − the number of milliseconds from 1970-01-01T00:00:00Z.

Return Value

an instant, not null.

Exceptions

DateTimeException − if the instant exceeds the maximum or minimum instant.

Example

The following example shows the usage of java.time.Instant.ofEpochMilli(long epochMilli) method.

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);   
   }
}

Let us compile and run the above program, this will produce the following result −

1970-01-01T00:00:10Z
Advertisements