El método inDaylightTime( Date ) de la clase SimpleTimeZone en Java se usa para verificar y verificar si la fecha dada está en el horario de verano.
Sintaxis:
public 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 time zone object SimpleTimeZone simtimeobj = new SimpleTimeZone(540, "GMT"); // Creating date object Date dt = new Date(); // Verifying daylight boolean bool_daylight = simtimeobj.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
Ejemplo 2:
// Java code to demonstrate // inDaylightTime() method import java.util.*; public class SimpleTimeZone_Demo { public static void main(String[] args) { // Creating a time zone object SimpleTimeZone simtimeobj = new SimpleTimeZone(400, "AUS"); // Creating a Calendar object Calendar c1 = Calendar.getInstance(); // Set Month // MONTH starts with 0 i.e.(0 - Jan) c1.set(Calendar.MONTH, 00); // Set Date c1.set(Calendar.DATE, 30); // Set Year c1.set(Calendar.YEAR, 2019); // Creating a date object // with specified time. Date dt = c1.getTime(); // Verifying daylight boolean bool_daylight = simtimeobj.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/8/docs/api/java/util/SimpleTimeZone.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