Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.Calendar;
import java.util.TimeZone;

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

        TimeZone timezone = TimeZone.getTimeZone("Europe/Paris");

        // checking offset value for date      
        System.out.println("Offset value:" + timezone.getOffset(Calendar.ZONE_OFFSET));
    }
}