La función getTime() es parte de la clase Timestamp de Java SQL. La función se utiliza para obtener la hora del objeto Timestamp. La función devuelve el tiempo en milisegundos, que representa el tiempo en milisegundos después del 1 de enero de 1970.
Firma de función:
public long getTime()
Sintaxis:
ts1.getTime();
Parámetros: La función no requiere ningún parámetro.
Valor devuelto: la función devuelve un valor largo que representa el tiempo en milisegundos.
Excepción: la función no arroja ninguna excepción.
Los siguientes ejemplos ilustran el uso de la función getTime()
Ejemplo 1: Cree una marca de tiempo y use getTime() para obtener la hora del objeto de marca de tiempo.
// Java program to demonstrate the // use of getTime() function import java.sql.*; class GFG { public static void main(String args[]) { // Create two timestamp objects Timestamp ts = new Timestamp(10000); // Display the timestamp object System.out.println("Timestamp time : " + ts.toString()); System.out.println("Time in milliseconds : " + ts.getTime()); } }
Timestamp time : 1970-01-01 00:00:10.0 Time in milliseconds : 10000
Ejemplo 2: Cree una marca de tiempo y use getTime() para obtener la hora del objeto de marca de tiempo y establezca la hora antes del 1 de enero de 1970. El valor largo negativo representa el tiempo antes del 1 de enero de 1970
// Java program to demonstrate the // use of getTime() function import java.sql.*; public class solution { public static void main(String args[]) { // Create two timestamp objects Timestamp ts = new Timestamp(-10000); // Display the timestamp object System.out.println("Timestamp time : " + ts.toString()); System.out.println("Time in milliseconds : " + ts.getTime()); } }
Timestamp time : 1969-12-31 23:59:50.0 Time in milliseconds : -10000
Referencia: https://docs.oracle.com/javase/7/docs/api/java/sql/Timestamp.html
Publicación traducida automáticamente
Artículo escrito por andrew1234 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA