El método setTimeInMillis(long mill_sec ) en la clase Calendario se usa para establecer el tiempo de Calendarios representado por este Calendario a partir del valor largo pasado.
Sintaxis:
public void setTimeInMillis(long mill_sec)
Parámetros: el método toma un parámetro mill_sec de tipo de datos largo y se refiere a la fecha dada que se va a establecer.
Valor devuelto: el método no devuelve ningún valor.
Los siguientes programas ilustran el funcionamiento del método setTimeInMillis() de la clase Calendario:
Ejemplo 1:
// Java code to illustrate // setTimeInMillis() method import java.util.*; public class Calendar_Demo { public static void main(String args[]) { // Creating calendar object Calendar calndr = Calendar.getInstance(); // Getting the time in milliseconds System.out.println("The Current" + " Time is: " + calndr.getTime()); // Changing time to 2000 milli-second calndr.setTimeInMillis(2000); // Displaying the new time System.out.println("After setting" + " Time: " + calndr.getTime()); } }
Producción:
The Current Time is: Fri Feb 22 08:00:54 UTC 2019 After setting Time: Thu Jan 01 00:00:02 UTC 1970
Ejemplo 2:
// Java code to illustrate // setTimeInMillis() method import java.util.*; public class Calendar_Demo { public static void main(String args[]) { // Creating calendar object Calendar calndr = Calendar.getInstance(); // Getting the time in milliseconds System.out.println("The Current" + " Time is: " + calndr.getTime()); // Changing time to 8000 milli-second calndr.setTimeInMillis(8000); // Displaying the new time System.out.println("After setting" + " Time: " + calndr.getTime()); } }
Producción:
The Current Time is: Fri Feb 22 08:01:02 UTC 2019 After setting Time: Thu Jan 01 00:00:08 UTC 1970
Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/Calendar.html#setTimeInMillis(long)
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