Java tutorial
import java.util.TimeZone; public class Main { public static void main(String args[]) { TimeZone timezone = TimeZone.getTimeZone("Europe/Paris"); // checking ID of this time zone System.out.println("ID value is :" + timezone.getID()); } }