Monday 7 January 2019

How to use observesDaylightTime() method of java.util.TimeZone class


Click here to watch on Youtube: 
https://www.youtube.com/watch?v=UyYfpTVsFv8&list=UUhwKlOVR041tngjerWxVccw

TimeZoneDemo.java

import java.util.TimeZone;

public class TimeZoneDemo
{
    public static void main(String[] args)
    {
        TimeZone timeZone = TimeZone.getTimeZone("America/Los_Angeles");
        System.out.println(timeZone);
       

        /*
         * Returns:
         *
         * true if this TimeZone is currently in Daylight Saving Time,
         * or if a transition from Standard Time to Daylight Saving
         * Time occurs at any future time; false otherwise.
         */

        boolean result = timeZone.observesDaylightTime();
        System.out.println(result);
    }
}

Output:

sun.util.calendar.ZoneInfo[id="America/Los_Angeles",offset=-28800000,dstSavings=3600000,useDaylight=true,transitions=185,lastRule=java.util.SimpleTimeZone[id=America/Los_Angeles,offset=-28800000,dstSavings=3600000,useDaylight=true,startYear=0,startMode=3,startMonth=2,startDay=8,startDayOfWeek=1,startTime=7200000,startTimeMode=0,endMode=3,endMonth=10,endDay=1,endDayOfWeek=1,endTime=7200000,endTimeMode=0]]
true

Click the below link to download the code:
https://sites.google.com/site/javaspringram2019/java_spring_2019/TimeZoneDemo_observesDaylightTime.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java_Spring_2019/tree/master/Java_2019/TimeZoneDemo_observesDaylightTime

Bitbucket Link:
https://bitbucket.org/ramram43210/java_spring_2019/src/80d90bcf5505788c0f100e330fb6b354d3132ddb/Java_2019/TimeZoneDemo_observesDaylightTime/?at=master

See also:
  • All JavaEE Videos Playlist
  • All JavaEE Videos
  • All JAVA EE Links
  • Spring Tutorial
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • Kids Tutorial
  • Cooking Tutorial
  • No comments:

    Post a Comment