El método getTime() en la clase Calendar se usa para devolver un objeto que se parece a la fecha representada por el valor de hora de este calendario.
Sintaxis:
public final Date getTime()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: El método devuelve la Fecha, representada por este Calendario.
Los siguientes programas ilustran el funcionamiento del método getTime() de la clase Calendario:
Ejemplo 1:
Java
// Java code to illustrate // getTime() method import java.util.*; public class Calendar_Demo { public static void main(String args[]) throws InterruptedException { // Creating a calendar Calendar calndr1 = Calendar.getInstance(); // Displaying the current time System.out.println("The Current" + " Time is: " + calndr1.getTime()); // Adding few delay Thread.sleep(10000); // Creating another calendar Calendar calndr2 = Calendar.getInstance(); // Displaying the upcoming time Date dt = calndr2.getTime(); System.out.println("The upcoming" + " time is: " + dt); } }
Producción:
The Current Time is: Wed Feb 20 14:40:37 UTC 2019 The upcoming time is: Wed Feb 20 14:40:47 UTC 2019
Ejemplo 2:
Java
// Java code to illustrate // getTime() method import java.util.*; public class Calendar_Demo { public static void main(String args[]) throws InterruptedException { // Creating a calendar Calendar calndr1 = Calendar.getInstance(); // Displaying the current time System.out.println("The Current" + " Time is: " + calndr1.getTime()); // Adding few delay Thread.sleep(5000); // Creating another calendar Calendar calndr2 = Calendar.getInstance(); // Displaying the upcoming time Date dt = calndr2.getTime(); System.out.println("The upcoming" + " time is: " + dt); } }
Producción:
The Current Time is: Wed Feb 20 14:40:50 UTC 2019 The upcoming time is: Wed Feb 20 14:40:55 UTC 2019
Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/Calendar.html#getMaximum-int-
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA