Java Data Type How to - Get Milli seconds from Instant








Question

We would like to know how to get Milli seconds from Instant.

Answer

import java.time.Instant;
/* ww w .j a va 2s.c  o m*/
public class Main {
  public static void main(String[] args) {

    // same time in millis
    Instant now = Instant.ofEpochMilli(1262347200000l);
    
    long toUnixTimestamp = now.toEpochMilli();
    
    System.out.println(toUnixTimestamp);
  }
}

The code above generates the following result.