El método setTimeZone(TimeZone time_zone) en la clase Calendario toma un valor de Zona horaria como parámetro y modifica o establece la zona horaria representada por este Calendario.
Sintaxis:
public void setTimeZone(TimeZone time_zone)
Parámetros: El método toma un parámetro time_zone de tipo Fecha y se refiere a la fecha dada que se va a configurar.
Valor devuelto: el método no devuelve ningún valor.
Los siguientes programas ilustran el funcionamiento del método setTimeZone() de la clase Calendario:
Ejemplo 1:
// Java code to illustrate // setTime() method import java.util.*; public class Calendar_Demo { public static void main(String[] args) { // Creating calendar object Calendar calndr = Calendar.getInstance(); // Displaying the current time zone String tz_name = calndr.getTimeZone() .getDisplayName(); System.out.println("The Current Time" + " Zone: " + tz_name); TimeZone time_zone = TimeZone.getTimeZone("GMT"); // Modifying the time zone calndr.setTimeZone(time_zone); // Displaying the modified zone System.out.println("Modified Zone: " + calndr.getTimeZone() .getDisplayName()); } }
Producción:
The Current Time Zone: Coordinated Universal Time Modified Zone: Greenwich Mean Time
Ejemplo 2:
// Java code to illustrate // setTimeZone() method import java.util.*; public class Calendar_Demo { public static void main(String[] args) { // Creating calendar object Calendar calndr = Calendar.getInstance(); // Displaying the current time zone String tz_name = calndr.getTimeZone() .getDisplayName(); System.out.println("The Current Time" + " Zone: " + tz_name); TimeZone time_zone = TimeZone.getTimeZone("Pacific/Tahiti"); // Modifying the time zone calndr.setTimeZone(time_zone); // Displaying the modified zone System.out.println("Modified Zone: " + calndr.getTimeZone() .getDisplayName()); } }
Producción:
The Current Time Zone: Coordinated Universal Time Modified Zone: Tahiti Time
Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/Calendar.html#setTimeZone(java.util.TimeZone)
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