Get current TimeZone using Calendar in Java
Description
The following code shows how to get current TimeZone using Calendar.
Example
/* w w w . jav a 2s . co m*/
import java.util.Calendar;
import java.util.TimeZone;
public class Main {
public static void main(String[] args) {
Calendar now = Calendar.getInstance();
TimeZone timeZone = now.getTimeZone();
System.out.println("Current TimeZone is : " + timeZone.getDisplayName());
}
}
The code above generates the following result.