<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
Using the Core JSTL tags
Here are the available Time Zone IDs on your system
" escapeXml="false" />
" escapeXml="false" />
// Save the ZoneWrapper.class into WEB-INF/classes/com/rntsoft
//ZoneWrapper.java
package com.rntsoft;
import java.util.TimeZone;
public class ZoneWrapper {
public ZoneWrapper() {
}
public String[] getAvailableIDs() {
return TimeZone.getAvailableIDs();
}
}