UTF Encoding in java - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T07:39:39Zhttp://stackoverflow.com/feeds/question/1067266http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1067266/utf-encoding-in-java2UTF Encoding in javaHarish2009-07-01T04:27:09Z2009-07-01T11:47:19Z
<p>I need to encode a message from request and write it into a file. Currently I am using the <code>URLEncoder.encode()</code> method for encoding. But it is not giving the expected result for special characters in French and Dutch. </p>
<p>I have tried using <code>URLEncoder.encode("msg", "UTF-8") also.</code> </p>
<p>Example:<br />
Original message: Pour gérer votre GSM<br />
After encoding: Pour g?rer votre GSM</p>
<p>Can any one tell me which method I can use for this purpose?</p>
http://stackoverflow.com/questions/1067266/utf-encoding-in-java/1067293#10672930Answer by notnoop for UTF Encoding in javanotnoop2009-07-01T04:36:48Z2009-07-01T04:36:48Z<p>Have you tried using specifying OutputStream encoder using the <a href="http://java.sun.com/javase/6/docs/api/java/io/OutputStreamWriter.html#OutputStreamWriter%28java.io.OutputStream,%20java.nio.charset.Charset" rel="nofollow">OutputStreamWriter(OutputStream, Charset)</a></p>
http://stackoverflow.com/questions/1067266/utf-encoding-in-java/1067357#10673572Answer by ammoQ for UTF Encoding in javaammoQ2009-07-01T05:07:16Z2009-07-01T05:07:16Z<p>URL encoding is not the right thing to do to preserve UTF-8 characters. See</p>
<p><a href="http://stackoverflow.com/questions/140549/what-character-set-should-i-assume-the-encoded-characters-in-a-url-to-be-in">http://stackoverflow.com/questions/140549/what-character-set-should-i-assume-the-encoded-characters-in-a-url-to-be-in</a></p>
http://stackoverflow.com/questions/1067266/utf-encoding-in-java/1067682#10676821Answer by A_M for UTF Encoding in javaA_M2009-07-01T07:10:32Z2009-07-01T07:10:32Z<p>Try doing something like:</p>
<pre><code>BufferedWriter out = new BufferedWriter(new OutputStreamWriter(
new FileOutputStream(file),"UTF-8"));
</code></pre>
http://stackoverflow.com/questions/1067266/utf-encoding-in-java/1067756#10677560Answer by tafanderson for UTF Encoding in javatafanderson2009-07-01T07:33:11Z2009-07-01T07:33:11Z<p>There are a lot of causes for the problem you have observed. The primary cause is that REQUEST is not giving you UTF-8 in the first place. I imagine that this situation will change over time, but currently there are many weak links that could be to blame: neither mySQL nor PHP5, html nor browsers use UTF-8 by default, though the data may originally be. </p>
<p>See <a href="http://stackoverflow.com/questions/905173/how-do-i-set-character-encoding-to-utf-8-for-default-html/905301">stackoverflow: how-do-i-set-character-encoding-to-utf-8-for-default-html</a></p>
<p>and
<a href="http://java.sun.com/developer/technicalArticles/Intl/HTTPCharset/" rel="nofollow">java.sun.com: technicalArticles--HTTPCharset</a></p>
<p>I experienced this problem with Chinese, and for that I'd recommend <a href="http://www.herongyang.com/PHP-Chinese/" rel="nofollow">herongyang.com</a></p>
http://stackoverflow.com/questions/1067266/utf-encoding-in-java/1067793#10677930Answer by Tim Büthe for UTF Encoding in javaTim Büthe2009-07-01T07:46:12Z2009-07-01T07:46:12Z<p>I seems to me like every single web developer in the world stumbles over this. I'd like to point to an article that helped me alot:</p>
<p><a href="http://www.ibm.com/developerworks/db2/library/techarticle/dm-0601poon2/" rel="nofollow">http://java.sun.com/developer/technicalArticles/Intl/HTTPCharset/</a></p>
<p>And if you use db2: <a href="http://www.ibm.com/developerworks/db2/library/techarticle/dm-0601poon2/" rel="nofollow">this IBM developer works Articel</a></p>
<p>By the way, I think the browsers don't support Unicode in addresses, because one could easily set up a phishing page when you use characters from one language that look similar to characters in another language. </p>
http://stackoverflow.com/questions/1067266/utf-encoding-in-java/1067822#10678220Answer by Nir Levy for UTF Encoding in javaNir Levy2009-07-01T07:54:21Z2009-07-01T07:54:21Z<p>if you are using tomcat then please see my post on the subject here <a href="http://nirlevy.blogspot.com/2009/02/utf8-and-hebrew-in-tomcat.html" rel="nofollow">http://nirlevy.blogspot.com/2009/02/utf8-and-hebrew-in-tomcat.html</a></p>
<p>I had the problem with hebrew but it's the same for every non english language</p>
http://stackoverflow.com/questions/1067266/utf-encoding-in-java/1068704#10687040Answer by dhiller for UTF Encoding in javadhiller2009-07-01T11:47:19Z2009-07-01T11:47:19Z<p>Use an explicit encoding when creating the string you want to send:</p>
<pre><code>final String input = ...;
final String utf8 = new String( input.getBytes( "UTF-8" ) , "UTF-8" );
</code></pre>