Java SimpleTimeZone getOffset() Method



Description

The Java SimpleTimeZone getOffset(int era, int year, int month, int day, int dayOfWeek, int millis) method is used to return the difference in milliseconds between local time and UTC, taking into account both the raw offset and the effect of daylight saving.

Declaration

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

public int getOffset(int era,
                     int year,
                     int month,
                     int day,
                     int dayOfWeek,
                     int millis)

Parameters

  • era − The era of the given date.

  • year − The year in the given date.

  • month − The month in the given date

  • day − The day-in-month of the given date.

  • dayOfWeek − The day-of-week of the given date.

  • millis − The milliseconds in day in standard local time.

Return Value

The method call returns the milliseconds to add to UTC to get local time.

Exception

IllegalArgumentException − This is thrown if the era, month, day, dayOfWeek, or millis parameters are out of range.

Java SimpleTimeZone getOffset(long offset) Method

Description

The Java SimpleTimeZone getOffset(long date) method is used to return the offset of this time zone from UTC at the given time.

Declaration

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

public int getOffset(long date)

Parameters

date − This is the time at which the time zone offset is found.

Return Value

The method call returns the amount of time in milliseconds to add to UTC to get local time.

Exception

NA

Getting OffSet of SimpleTimeZone of India Zone Example

The following example shows the usage of Java SimpleTimeZone getOffset() method to get the offset of a SimpleTimeZone object from UTC. We've created a SimpleTimeZone using India. Then we've retrieved the offset and printed it.

package com.tutorialspoint;

import java.util.GregorianCalendar;
import java.util.SimpleTimeZone;

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

      // get offset
      int offset = stobj.getOffset(GregorianCalendar.AD, 2000, 10, 2, 4, 5000); 

      // check offset value       
      System.out.println("Offset is : " + offset);
   }    
}

Output

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

Offset is : 720

Getting OffSet of SimpleTimeZone of US Zone Example

The following example shows the usage of Java SimpleTimeZone getOffset(long offset) method to get the offset of a SimpleTimeZone object from UTC. We've created a SimpleTimeZone using US. Then we've retrieved the offset and printed it.

package com.tutorialspoint;

import java.util.GregorianCalendar;
import java.util.SimpleTimeZone;

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

      // get offset
      int offset = stobj.getOffset(Calendar.ZONE_OFFSET); 

      // check offset value       
      System.out.println("Offset is : " + offset);
   }    
}

Output

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

Offset is : 720

Getting OffSet of SimpleTimeZone of US Zone with Given Parameters Example

The following example shows the usage of Java SimpleTimeZone getOffset() method to get the offset of a SimpleTimeZone object from UTC. We've created a SimpleTimeZone using US. Then we've retrieved the offset and printed it.

package com.tutorialspoint;

import java.util.GregorianCalendar;
import java.util.SimpleTimeZone;

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

      // get offset
      int offset = stobj.getOffset(GregorianCalendar.AD, 2000, 10, 2, 4, 5000); 

      // check offset value       
      System.out.println("Offset is : " + offset);
   }    
}

Output

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

Offset is : 720
java_util_simpletimezone.htm
Advertisements