Hi George,

>> >> Is there a way to set the timezone for my application?
>>
>> TimeZone.setDefault(TimeZone.getTimeZone("GMT-8:00"));
>
> Have you actually *tested* this on App Engine?

Yes.

> This should be inserted in the servlet initialization code?
>
You can insert the code when the servlet initializes as follows:
@Override
public void init() throws ServletException {
    TimeZone.setDefault(TimeZone.getTimeZone("GMT-8:00"));
}

When I reply something, I always try it.

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.


Reply via email to