El método getTimeZone() de la clase TimeZone en Java se utiliza para conocer la zona horaria real de cualquier ID de zona horaria pasada.
Sintaxis:
public static TimeZone getTimeZone(String the_ID)
Parámetros: el método toma un parámetro, el_ID del tipo de datos de string, que se refiere al ID del cual se necesita conocer la zona horaria.
Valor devuelto: el método devuelve la zona horaria especificada para el ID pasado o la zona GMT si el programa no puede entender el ID especificado.
Los siguientes programas ilustran el funcionamiento del método getTimeZone() de TimeZone:
Ejemplo 1:
// Java code to illustrate getTimeZone() method import java.util.*; public class TimeZoneDemo { public static void main(String args[]) { // Creating a TimeZone TimeZone the_time_zone = TimeZone.getDefault(); // Knowing the TimeZone System.out.println("The TimeZone is: " + the_time_zone .getTimeZone("GMT+5:30")); } }
The TimeZone is: sun.util.calendar.ZoneInfo[id="GMT+05:30", offset=19800000, dstSavings=0, useDaylight=false, transitions=0, lastRule=null]
Ejemplo 2:
// Java code to illustrate getTimeZone() method import java.util.*; public class TimeZoneDemo { public static void main(String args[]) { // Creating a TimeZone TimeZone the_time_zone = TimeZone.getDefault(); // Knowing the TimeZone System.out.println("The TimeZone is: " + the_time_zone .getTimeZone("GMT-3:30")); } }
The TimeZone is: sun.util.calendar.ZoneInfo[id="GMT-03:30", offset=-12600000, dstSavings=0, useDaylight=false, transitions=0, lastRule=null]
Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.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