Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.SimpleTimeZone;

public class Main {
    public static void main(String args[]) {

        SimpleTimeZone stobj = new SimpleTimeZone(720, "INDIA");

        // get raw offset
        int offset = stobj.getRawOffset();

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