java连接MySQL时,数据库和java文件以及数据库连接都设置成了UTF-8,但是当操作数据库抛出异常时,异常信息中的中文乱码,但是读写数据库正确时,数据没有乱码,造成这种原因是因为mysqljdbc驱动中存在一个errorMessageEncoding变量为CP1252,用于编码错误信息,此变量为私有,这是造成乱码的最终原因,我的解决方法是获得connection之后,使用反射修改这个变量值为UTF-8,这样乱码解决了,代码如下:
Class.forName("com.mysql.jdbc.Driver");
connection = DriverManager.getConnection("jdbc:mysql://127.0.0.1:3341/hibernate3.3.2?useUnicode=true&characterEncoding=UTF-8", "root", "sa");
if (connection instanceof com.mysql.jdbc.Connection) {
com.mysql.jdbc.Connection mysqlConnection = (com.mysql.jdbc.Connection) connection;
Field errField = com.mysql.jdbc.Connection.class.getDeclaredField("errorMessageEncoding");
errField.setAccessible(true);
errField.set(mysqlConnection, "UTF-8");
}
statement= connection.createStatement();
String sql = "insert into User(UserId,Password, RecId) values('中国','123',126453)";
statement.executeUpdate(sql);
userID加了唯一索引,插入两边之后,如果没有if语句里面的反射,异常信息乱码,加了之后不乱码
mysql驱动版本号:mysql-connector-java-5.0.8-bin.jar