Java TimeZone.setRawOffset(int offsetMillis)

Syntax

TimeZone.setRawOffset(int offsetMillis) has the following syntax.

public abstract void setRawOffset(int offsetMillis)

Example

In the following code shows how to use TimeZone.setRawOffset(int offsetMillis) method.


//from   ww w . j av  a2s .c om
import java.util.TimeZone;

public class Main {
   public static void main( String args[] ){
       
      TimeZone tzone = TimeZone.getDefault();
      
      // set raw offset
      tzone.setRawOffset(10000);

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

The code above generates the following result.