Problems reading/writing UTF-8 data in MySQL from Java using JDBC connector 5.1 - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T05:47:34Zhttp://stackoverflow.com/feeds/question/730359http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/730359/problems-reading-writing-utf-8-data-in-mysql-from-java-using-jdbc-connector-5-10Problems reading/writing UTF-8 data in MySQL from Java using JDBC connector 5.1Cesar2009-04-08T14:44:23Z2009-04-13T16:10:19Z
<p>Hello, </p>
<p>I have an scenario with two MySQL databases (in UTF-8), a Java code (a Timer Service) that synchronize both databases (reading form first of them and writing/updating to second) and a Web application that lets modify data loaded in the second database. </p>
<p>All database access are made using IBATIS (but I detect that I have the same problem using JDBC, PreparedStatements and ResultSets) </p>
<p>When my java code reads data from first database, I obtain characters like 'ó' when really it must be 'ó'. This data is wroten without modifications to the second database. </p>
<p>Later, when I see the loaded data in my web application, I see the extrange character despite the <code><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></code>. </p>
<p>If I decode the data using ... </p>
<pre><code>new String(data.getBytes("UTF-8"));
</code></pre>
<p>... I visualize correctly the character (ó). But I can not use this solution as a general rule because when I modify data using web aplication form, the data is not updated in UTF-8 in my second database (despite the database is UTF-8 and my connection string is using characterEncoding, characterSetResults and useUnicode parameters). </p>
<p>From my Java code I obtain the following Database settings: </p>
<pre><code>character_set_client-->utf8
character_set_connection-->utf8
character_set_database-->utf8
character_set_filesystem-->binary
character_set_results-->utf8
character_set_server-->latin1
character_set_system-->utf8
character_sets_dir-->/usr/local/mysql51/share/mysql/charsets/
</code></pre>
<p>the character_set_server setting can't be changed and I don't know what I am doing wrong!! </p>
<p>How can i read UTF-8 data from MySQL using JDBC connector (mysql-connector-java-5.1.5-bin.jar)? </p>
<p>The problem is reading data from first database or writing to second database? </p>
<p>Thanks in advance, </p>
<p>Cesar</p>
http://stackoverflow.com/questions/730359/problems-reading-writing-utf-8-data-in-mysql-from-java-using-jdbc-connector-5-1/730464#7304640Answer by chburd for Problems reading/writing UTF-8 data in MySQL from Java using JDBC connector 5.1chburd2009-04-08T15:12:00Z2009-04-08T15:20:07Z<p>ave Cesar</p>
<p>you can set the file.encoding property of your JVM to UTF-8 so all locale/encoding sensitive API will consider decoded Strings as UTF8.</p>
<p>For example, you can set it in your command line that launch your Java app :</p>
<blockquote>
<p>java -Dfile.encoding=UTF-8 ....</p>
</blockquote>
<p>You can also refer to <a href="http://stackoverflow.com/questions/138948/how-to-get-utf-8-working-in-java-webapps">This SO question</a> for a complete explanation on Tomcat setup. </p>
http://stackoverflow.com/questions/730359/problems-reading-writing-utf-8-data-in-mysql-from-java-using-jdbc-connector-5-1/730465#7304650Answer by sylvarking for Problems reading/writing UTF-8 data in MySQL from Java using JDBC connector 5.1sylvarking2009-04-08T15:12:15Z2009-04-08T15:12:15Z<p>At some point in the chain, UTF-8–encoded bytes are being decoded with Latin1. From the list of your settings, it appears this is happening at "character_set_server". Without knowing how these values were obtained, it is hard to interpret them.</p>
<p>Check the value of the <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/System.html#getProperty%28java.lang.String%29" rel="nofollow">system property</a> "file.encoding". If that is not "UTF-8", then you need to explicitly specify "UTF-8" as the character encoding whenever you decode bytes to characters. For example, when you call a <code>String</code> constructor with a <code>byte[]</code>, or use an <code>InputStreamReader</code>.</p>
<p>It is best to explicitly specify character encodings, rather than rely on the default platform encoding.</p>
http://stackoverflow.com/questions/730359/problems-reading-writing-utf-8-data-in-mysql-from-java-using-jdbc-connector-5-1/744241#7442410Answer by Cesar for Problems reading/writing UTF-8 data in MySQL from Java using JDBC connector 5.1Cesar2009-04-13T15:22:30Z2009-04-13T15:22:30Z<p>Hello,</p>
<p>first of all, thanks for the answers.</p>
<p>I can't explain what it's happening in my program. </p>
<p>When my application starts, the file.encoding parameter value is "UTF-8" and the defaultCharset value is "UTF-8". I obtain those values using:</p>
<p>System.getProperty("file.encoding");
java.nio.charset.Charset.defaultCharset());</p>
<p>However, when I read a UTF-8 database value, I obtain characters like 'ó'. But I know that those characters are UTF-8 valid because when I use String constructor with "UTF-8" charset encoding, I see the right character.</p>
<p>If I change the file.encoding parameter value using -Dfile.encoding=ISO-8859-1, and I read the same database value, I see the right character!!!, but if execute a select like ...</p>
<p>SELECT 'ó' FROM DUAL</p>
<p>... I see an extrange value for that character. </p>
<p>If I modify the select query like this...</p>
<p>SELECT _latin1'ó' FROM DUAL</p>
<p>...I see the right character because I'm telling to Mysql parser that 'ó' has latin1 encoding. But if I execute System.out.println("ó"), I see a wrong value.</p>
<p>I can´t explain this behavior.</p>
<p>This is my test program</p>
<p><hr /></p>
<pre><code> Connection conn = null;
PreparedStatement ps = null;
ResultSet rs = null;
try
{
String userName = "user";
String password = "password";
Properties prop = new Properties();
prop.put("user", userName);
prop.put("password", password);
String url = "jdbc:mysql://localhost/database?characterSetResults=UTF-8&characterEncoding=UTF-8&useUnicode=yes";
Class.forName ("com.mysql.jdbc.Driver").newInstance();
conn = DriverManager.getConnection (url, prop);
ps = conn.prepareStatement("show variables like '%character%'");
rs = ps.executeQuery();
while (rs.next()) {
System.out.println(rs.getString(1) +"-->"+rs.getString(2));
}
rs.close();
ps.close();
System.out.println("-----------------------------");
System.out.println("ARGS[0]:"+args[0]);
System.out.println("-----------------------------");
System.out.println("JVM DEFAULT CHARSET:"+java.nio.charset.Charset.defaultCharset());
System.out.println("-----------------------------");
System.out.println("JVM file.encoding:"+System.getProperty("file.encoding"));
System.out.println("-----------------------------");
//THE QUERY
String query = "select 'ó','ó' from dual";
ps = conn.prepareStatement(query);
rs = ps.executeQuery();
rs.next();
System.out.println("FIELD1:"+rs.getString(1));
System.out.println("FIELD2:"+rs.getString(2));
}
catch (Exception e)
{
e.printStackTrace();
}
finally
{
if (rs != null) {
try
{
rs.close ();
}
catch (Exception e) { /* ignore close errors */ }
}
if (ps != null) {
try
{
ps.close ();
}
catch (Exception e) { /* ignore close errors */ }
}
if (conn != null)
{
try
{
conn.close ();
}
catch (Exception e) { /* ignore close errors */ }
}
}
}
</code></pre>
<p><hr /></p>
<p>If I execute the program passing as args[0] the 'ó' value...</p>
<p>this is the output with UTF-8 file.encoding:</p>
<pre><code>character_set_client-->utf8
character_set_connection-->utf8
character_set_database-->utf8
character_set_filesystem-->binary
character_set_results-->utf8
character_set_server-->latin1
character_set_system-->utf8
character_sets_dir-->/usr/local/mysql51/share/mysql/charsets/
-----------------------------
ARGS[0]:ó
-----------------------------
JVM DEFAULT CHARSET:UTF-8
-----------------------------
JVM file.encoding:UTF-8
-----------------------------
FIELD1:ó
FIELD2:ó
</code></pre>
<p>And this is the output using ISO-8859-1</p>
<pre><code>character_set_client-->utf8
character_set_connection-->utf8
character_set_database-->utf8
character_set_filesystem-->binary
character_set_results-->utf8
character_set_server-->latin1
character_set_system-->utf8
character_sets_dir-->/usr/local/mysql51/share/mysql/charsets/
-----------------------------
ARGS[1]:¦
-----------------------------
JVM DEFAULT CHARSET:ISO-8859-1
-----------------------------
JVM file.encoding:ISO-8859-1
-----------------------------
FIELD1:¦
FIELD2:ó
</code></pre>
<p>Thanks in advance</p>