List of usage examples for java.util SimpleTimeZone getDisplayName
public final String getDisplayName()
From source file:Test.java
public static void main(String[] args) { SimpleTimeZone simpleTimeZone = new SimpleTimeZone(-21600000, "CST", Calendar.MARCH, 1, -Calendar.SUNDAY, 7200000, Calendar.NOVEMBER, -1, Calendar.SUNDAY, 7200000, 3600000); System.out.println(simpleTimeZone.getDisplayName() + " - " + simpleTimeZone.observesDaylightTime()); }