Re: [appengine-java] The title of email displays wrongly in localization

2010-08-27 Thread Pieter Coucke
same here: http://code.google.com/p/googleappengine/issues/detail?id=3497

-- 
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 google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] The title of email displays wrongly in localization

2010-08-26 Thread Tony
Hello,

I have a problem to dispay the title of email if it includes Chinese.
I tried:
[1]
...
String title = "测试标题";
message.setSubject(title);
...
And
[2]
...
String title = "测试标题";
title = MimeUtility.encodeText(title);
message.setSubject(title);
...

Both titles are displayed as "?". If the program works in
Tomcat (without GAE/GWT), the 2nd is ok.

Please let me know, if you have any idea to handle the title
localization issue?

Thanks in advance,
Tony

-- 
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 google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.