java.sql.SQLException: Incorrect string value: '\xE6\x88\x91\xE7\x9A\x84...' for column 'groupName'
<?xml version="1.0" encoding="UTF-8"?>
<c3p0-config>
<default-config>
<property name="user">***</property>
<property name="password">****</property>
<property name="driverClass">com.mysql.jdbc.Driver</property>
<property name="jdbcUrl">jdbc:mysql://localhost:3306/web15?useUnicode=true&characterEncoding=UTF-8</property>
</default-config>
</c3p0-config>
插入mysql 不产生中文乱码,前提
1.jdbc 加入 jdbc:mysql://localhost:3306/jdbc?useUnicode=true&characterEncoding=UTF8
xml 文件注意要转义:jdbc:mysql://localhost:3306/web15?useUnicode=true&characterEncoding=UTF-8
2.建库时选 UTF-8字符集
3.建表时字符集也是统一
CREATE TABLE `user` (
`uid` varchar(32) NOT NULL,
`username` varchar(20) DEFAULT NULL,
`password` varchar(20) DEFAULT NULL,
`name` varchar(20) DEFAULT NULL,
`email` varchar(30) DEFAULT NULL,
`telephone` varchar(20) DEFAULT NULL,
`birthday` varchar(20) DEFAULT NULL,
`sex` varchar(10) DEFAULT NULL,
`state` int(11) DEFAULT NULL,
`code` varchar(64) DEFAULT NULL,
PRIMARY KEY (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
4.用servlet传数据
一般用 post 方式,不提倡用get方式
<form class="form-horizontal" style="margin-top: 5px;" action="/WEB15/register" method="post">
request.setCharacterEncoding("UTF-8");