El método getTimeZone() en la clase Calendario se usa para devolver la zona horaria actual de este Calendario.
Sintaxis:
public TimeZone getTimeZone()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: el método devuelve la zona horaria de este objeto Calendar.
Los siguientes programas ilustran el funcionamiento del método getTimeZone() de la clase Calendario:
Ejemplo 1:
Java
// Java code to illustrate // getTimeZone() method import java.util.*; public class Calendar_Demo { public static void main(String args[]) { // Creating a calendar object Calendar calndr = Calendar.getInstance(); // Getting the time zone of calendar TimeZone time_zone = calndr.getTimeZone(); // Displaying the current time zone System.out.println("The current Time zone is: " + time_zone.getDisplayName()); } }
Producción:
The current Time zone is: Coordinated Universal Time
Ejemplo 2:
Java
// Java code to illustrate // getTimeZone() method import java.util.*; public class Calendar_Demo { public static void main(String args[]) { // Creating a calendar object Calendar calndr = Calendar.getInstance(); // Getting the time zone of calendar TimeZone time_zone = calndr.getTimeZone(); // Displaying the current time zone System.out.println("The current Time zone is: " + time_zone.getDisplayName()); // Changing the time zone calndr.setTimeZone( TimeZone.getTimeZone("GMT")); System.out.println("New TimeZone: " + calndr.getTimeZone() .getDisplayName()); } }
Producción:
The current Time zone is: Coordinated Universal Time New TimeZone: Greenwich Mean Time
Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/Calendar.html#getTimeZone–
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