Here are the available Time Zone IDs on your system
// Save the ZoneWrapper.class into WEB-INF/classes/com/java2s
//ZoneWrapper.java
package com.java2s;
import java.util.TimeZone;
public class ZoneWrapper {
public ZoneWrapper() {
}
public String[] getAvailableIDs() {
return TimeZone.getAvailableIDs();
}
}


No comments:
Post a Comment