How to set Google App Engine java Content-Type to UTF-8 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T12:21:09Z http://stackoverflow.com/feeds/question/960330 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/960330/how-to-set-google-app-engine-java-content-type-to-utf-8 2 How to set Google App Engine java Content-Type to UTF-8 zproxy 2009-06-06T19:14:43Z 2009-11-11T15:12:58Z <p>It seems I cannot get UTF-8 encoding to be sent in the response headers. I tried using this to no avail:</p> <pre><code>resp.setHeader("Content-Encoding", "utf-8"); </code></pre> <p>Does anyone know when is this bug to be fixed or is <strong>there a workaround</strong>?</p> <p>References:</p> <ul> <li><a href="http://groups.google.com/group/google-appengine/browse%5Fthread/thread/68a480cb7bec869e" rel="nofollow">http://groups.google.com/group/google-appengine/browse_thread/thread/68a480cb7bec869e</a></li> <li><a href="http://www.ozelwebtasarim.com/index.php/google/10004-google-app-engine-java-utf-8-character-encoding-problem" rel="nofollow">http://www.ozelwebtasarim.com/index.php/google/10004-google-app-engine-java-utf-8-character-encoding-problem</a></li> </ul> http://stackoverflow.com/questions/960330/how-to-set-google-app-engine-java-content-type-to-utf-8/960385#960385 4 Answer by Alex Martelli for How to set Google App Engine java Content-Type to UTF-8 Alex Martelli 2009-06-06T19:45:08Z 2009-06-06T19:45:08Z <p>Per <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.5" rel="nofollow">the w3 reference</a>, <code>Content-Encoding</code> is for such things as gzip, deflate, compress -- <em>not</em> for "how is Unicode encoded in the body". What you need is e.g.</p> <pre><code>Content-Type: text/html; charset=utf-8 </code></pre> <p>i.e., the <code>charset</code> attribute of <code>Content-Type</code>.</p> http://stackoverflow.com/questions/960330/how-to-set-google-app-engine-java-content-type-to-utf-8/1715816#1715816 0 Answer by vhly for How to set Google App Engine java Content-Type to UTF-8 vhly 2009-11-11T15:12:58Z 2009-11-11T15:12:58Z <p>Content-Encoding set the content encoding for example gzip...</p>