Hi George,
>> Is there a way to set the timezone for my application?
>>
TimeZone.setDefault(TimeZone.getTimeZone("GMT-8:00"));
If you use JSTL, try the following setup in web.xml:
<context-param>
<param-name>javax.servlet.jsp.jstl.fmt.timeZone</param-name>
<param-value>GMT-8:00</param-value>
</context-param>
You can change "GMT-8:00" as you want.
Hope this helps,
Yasuo Higa
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en.