How to set Google App Engine java Content-Type to UTF-8 - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T12:21:09Zhttp://stackoverflow.com/feeds/question/960330http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/960330/how-to-set-google-app-engine-java-content-type-to-utf-82How to set Google App Engine java Content-Type to UTF-8zproxy2009-06-06T19:14:43Z2009-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#9603854Answer by Alex Martelli for How to set Google App Engine java Content-Type to UTF-8Alex Martelli2009-06-06T19:45:08Z2009-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#17158160Answer by vhly for How to set Google App Engine java Content-Type to UTF-8vhly2009-11-11T15:12:58Z2009-11-11T15:12:58Z<p>Content-Encoding set the content encoding for example gzip...</p>