El método inDaylightTime( Date ) de la clase TimeZone en Java se usa para comprobar y verificar si la fecha dada está en el horario de verano.
Sintaxis:
public abstract boolean inDaylightTime(Date date)
Parámetros: el método toma una fecha de parámetro de tipo Fecha, que es la fecha dada para verificar.
Valor de retorno: el método devuelve el booleano True si la fecha pasada no es efectiva con respecto al horario de verano; de lo contrario, el método devuelve el boolean False.
Los siguientes programas ilustran el uso del método inDaylightTime() en Java:
Ejemplo 1:
// Java code to demonstrate // inDaylightTime() method import java.util.*; public class SimpleTimeZone_Demo { public static void main(String[] args) { // Creating a TimeZone TimeZone offtime_zone = TimeZone.getTimeZone("Europe/Rome"); // Creating date object Date dt = new Date(); // Verifying daylight boolean bool_daylight = offtime_zone.inDaylightTime(dt); // Checking the value of day light System.out.println("Is it in day" + " light saving time? " + bool_daylight); } }
Is it in day light saving time? true
Ejemplo 2:
// Java code to demonstrate // inDaylightTime() method import java.util.*; public class SimpleTimeZone_Demo { public static void main(String[] args) { // Creating a TimeZone TimeZone offtime_zone = TimeZone.getTimeZone("Pacific/Pago_Pago"); // Creating date object Date dt = new Date(); // Verifying daylight boolean bool_daylight = offtime_zone.inDaylightTime(dt); // Checking the value of day light System.out.println("Is it in day" + " light saving time? " + bool_daylight); } }
Is it in day light saving time? false
Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html#inDaylightTime(java.util.Date)
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