1:在所有的servlet中加入下面的两句话
request
.setCharacterEncoding(
"utf-8")
response
.setContentType(
"text/html;charset=utf-8")
2:创建表时设置编码集
CREATE TABLE `database_user` (
`ID` varchar(40) NOT NULL default '',
`UserID` varchar(40) NOT NULL default '',
) **ENGINE=InnoDB DEFAULT CHARSET=utf8;**
3:在服务中设置编码集这里我用的是tomcat 就以它为例了,设置编码集 在tomcat中的conf/serve.xml中(这种方式不推荐,一般服务器程序员是操作不了的)
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" URIEncoding="utf-8" />
4:创建数据库连接时加入编码集 “jdbc:mysql://localhost:3306/pet?useUnicode=true&characterEncoding=UTF-8”;