El método getID() de la clase TimeZone en Java se usa para obtener la identificación oficial de una zona horaria en particular.
Sintaxis:
public String getID()
Parámetros: El método no toma ningún parámetro.
Valor de retorno: el método devuelve el ID de TimeZone .
Los siguientes programas ilustran el funcionamiento del método getID() de TimeZone:
Ejemplo 1:
// Java code to illustrate getID() method import java.util.*; public class TimeZoneDemo { public static void main(String args[]) { // Creating a TimeZone TimeZone offtime_zone = TimeZone.getTimeZone("Pacific/Pago_Pago"); // Knowing the DST System.out.println("The ID is: " + offtime_zone.getID()); } }
Producción:
The ID is: Pacific/Pago_Pago
Ejemplo 2:
// Java code to illustrate getID() method import java.util.*; public class TimeZoneDemo { public static void main(String args[]) { // Creating a TimeZone TimeZone offtime_zone = TimeZone.getTimeZone("Europe/Rome"); // Knowing the DST System.out.println("The ID is: " + offtime_zone.getID()); } }
Producción:
The ID is: Europe/Rome
Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html#getID()
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