Hello. On my local machine i use eclipse with google plugin. I write
app that store data in DataStore and retrun it by call. In DataStore i
have data in cyrillic, on localhost that data return cirrectly, but
after uploading it look like "?". Character encoding for eclipse
project set to "UTF-8". I retrun data with code:

                        res.setContentType("text/plain");
                        res.setHeader("encoding", "UTF-8");
                        res.setHeader("charset", "UTF-8");
                        res.setCharacterEncoding("UTF-8");
                        res.getOutputStream().print(pDescription.toString());

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to