On 7/20/05, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> Hmm ... does Java have a standard set of timezone names? If so, does it
> bear any resemblance to the zic database names?
Yes, you can see them by running this snippet...
String zones[] = TimeZone.getAvailableIDs();
for (int i=0; i<zones.length; i++) {
System.out.println(" "+i+": "+TimeZone.getTimeZone(zones[i]));
}
No idea how that compares to zic...
Christian