The getEpochSecond() method of Instant class is used to return the number of seconds from the Java epoch of 1970-01-01T00:00:00Z. It means the difference between time in seconds of this instance and time represented by “1970-01-01T00:00:00Z” is returned by this method. The epoch second count is a simple incrementing count of seconds where the second 0 is 1970-01-01T00:00:00Z.
Syntax:
public long getEpochSecond()
Returns: This method returns the seconds from the epoch of 1970-01-01T00:00:00Z.
Below programs illustrate the Instant.getEpochSecond() method:
Program 1:
import java.time.*;
public class GFG {
public static void main(String[] args)
{
Instant instant
= Instant.parse( "2018-10-20T16:55:30.00Z" );
System.out.println( "Instant: " + instant);
long epochValue = instant.getEpochSecond();
System.out.println( "Java epoch Value: "
+ epochValue);
}
}
|
Output:
Instant: 2018-10-20T16:55:30Z
Java epoch Value: 1540054530
Program 2:
import java.time.*;
public class GFG {
public static void main(String[] args)
{
Instant instant
= Instant.now();
System.out.println( "Current Instant: "
+ instant);
long epochValue = instant.getEpochSecond();
System.out.println( "Java epoch Value: "
+ epochValue);
}
}
|
Output:
Current Instant: 2018-11-22T08:26:19.502Z
Java epoch Value: 1542875179
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#getEpochSecond()