Java SimpleTimeZone useDaylightTime() Method



Description

The Java SimpleTimeZone useDaylightTime() method is used to query if this time zone uses daylight saving time.

Declaration

Following is the declaration for java.util.SimpleTimeZone.useDaylightTime() method.

public boolean useDaylightTime()

Parameters

NA

Return Value

The method call returns 'true' if this time zone uses daylight saving time; false otherwise.

Exception

NA

Using Day Light Time for a SimpleTimeZone Instance of GMT Timezone Example

The following example shows the usage of Java SimpleTimeZone useDaylightTime() method to check if this time zone is in daylight saving time. We've created a SimpleTimeZone using GMT. Then we've checked date being in daylight savings using useDaylightTime() ethod and printed the status.

package com.tutorialspoint;

import java.util.SimpleTimeZone;

public class SimpleTimeZoneDemo {
   public static void main( String args[] ) {
      
      // create simple time zone object
      SimpleTimeZone stobj = new SimpleTimeZone(820,"GMT");

      // checking day light time  
      System.out.println("Use day light time : " + stobj.useDaylightTime());
   }      
}

Output

Let us compile and run the above program, this will produce the following result.

Use day light time : false

Using Day Light Time for a SimpleTimeZone Instance of BST Timezone Example

The following example shows the usage of Java SimpleTimeZone useDaylightTime() method to check if this time zone is in daylight saving time. We've created a SimpleTimeZone using BST. Then we've checked date being in daylight savings using useDaylightTime() ethod and printed the status.

package com.tutorialspoint;

import java.util.SimpleTimeZone;

public class SimpleTimeZoneDemo {
   public static void main( String args[] ) {
      
      // create simple time zone object
      SimpleTimeZone stobj = new SimpleTimeZone(820,"BST");

      // checking day light time  
      System.out.println("Use day light time : " + stobj.useDaylightTime());
   }      
}

Output

Let us compile and run the above program, this will produce the following result.

Use day light time : false

Using Day Light Time for a SimpleTimeZone Instance of IST Timezone Example

The following example shows the usage of Java SimpleTimeZone useDaylightTime() method to check if this time zone is in daylight saving time. We've created a SimpleTimeZone using IST. Then we've checked date being in daylight savings using useDaylightTime() ethod and printed the status.

package com.tutorialspoint;

import java.util.SimpleTimeZone;

public class SimpleTimeZoneDemo {
   public static void main( String args[] ) {
      
      // create simple time zone object
      SimpleTimeZone stobj = new SimpleTimeZone(820,"IST");

      // checking day light time  
      System.out.println("Use day light time : " + stobj.useDaylightTime());
   }      
}

Output

Let us compile and run the above program, this will produce the following result.

Use day light time : false
java_util_simpletimezone.htm
Advertisements