Método TimeZone getDSTSavings() en Java con ejemplos

El método getDSTSavings() de la clase TimeZone en Java se usa para saber la cantidad de tiempo que se necesita agregar a la hora estándar local para obtener la hora del reloj de pared.

Sintaxis:

public int getDSTSavings()

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 a la hora estándar local para obtener la hora del reloj de pared. Esto se llama el tiempo de ahorro .

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

// Java code to illustrate getDSTSavings() 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 DST is: "
                           + offtime_zone.getDSTSavings());
    }
}
Producción:

The DST is: 0

Ejemplo 2:

// Java code to illustrate getDSTSavings() 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 DST is: "
                           + offtime_zone.getDSTSavings());
    }
}
Producción:

The DST is: 3600000

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

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 *