Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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());
    }
}