El método getEpochSecond() de la clase Instant se usa para devolver el número de segundos desde la época de Java de 1970-01-01T00:00:00Z. Significa que este método devuelve la diferencia entre el tiempo en segundos de esta instancia y el tiempo representado por «1970-01-01T00:00:00Z». El conteo de segundos de época es un conteo incremental simple de segundos donde el segundo 0 es 1970-01-01T00:00:00Z.
Sintaxis:
public long getEpochSecond()
Devoluciones: este método devuelve los segundos desde la época de 1970-01-01T00:00:00Z.
Los siguientes programas ilustran el método Instant.getEpochSecond():
Programa 1:
// Java program to demonstrate // Instant.getEpochSecond() method import java.time.*; public class GFG { public static void main(String[] args) { // create instance object Instant instant = Instant.parse("2018-10-20T16:55:30.00Z"); // print Instant Value System.out.println("Instant: " + instant); // get epochValue using getEpochSecond long epochValue = instant.getEpochSecond(); // print results System.out.println("Java epoch Value: " + epochValue); } }
Instant: 2018-10-20T16:55:30Z Java epoch Value: 1540054530
Programa 2:
// Java program to demonstrate // Instant.getEpochSecond() method import java.time.*; public class GFG { public static void main(String[] args) { // create current instance object Instant instant = Instant.now(); // print Instant Value System.out.println("Current Instant: " + instant); // get epochValue using getEpochSecond long epochValue = instant.getEpochSecond(); // print results System.out.println("Java epoch Value: " + epochValue); } }
Current Instant: 2018-11-22T08:26:19.502Z Java epoch Value: 1542875179
Referencia: https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#getEpochSecond()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA