Método TimeZone getRawOffset() en Java con ejemplos

El método getRawOffset() de la clase TimeZone en Java se usa para saber la cantidad de tiempo en milisegundos que se necesita agregar al UTC para obtener la hora estándar en esta zona horaria.

Sintaxis:

public abstract int getRawOffset()

Parámetros: El método no toma ningún parámetro.

Valor devuelto: el método devuelve en milisegundos la cantidad de tiempo que se necesita agregar al UTC para obtener la hora estándar en esta zona horaria.

Los siguientes programas ilustran el funcionamiento del método getRawOffset() de TimeZone:
Ejemplo 1:

// Java code to illustrate getRawOffset() 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 rawOffset time
        System.out.println("The rawOffset time is: "
                           + offtime_zone.getRawOffset());
    }
}
Producción:

The rawOffset time is: -39600000

Ejemplo 2:

// Java code to illustrate getRawOffset() 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 rawOffset time
        System.out.println("The rawOffset time is: "
                           + offtime_zone.getRawOffset());
    }
}
Producción:

The rawOffset time is: 3600000

Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html#getRawOffset()

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *