表單提交中文資料庫變成???
阿新 • • 發佈:2019-02-03
1、HTML編碼方式
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
2、JSP編碼方式
<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
3、Servlet編碼方式
request.setCharacterEncoding("UTF-8");
response.setCharacterEncoding("UTF-8");
4、JAVA檔案編碼方式
File Encoding 設定成UTF-8
5、連線資料庫配置檔案 characterEncoding=utf8
jdbc.driverClassName=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost:3306/vote?useUnicode=true&characterEncoding=utf8 jdbc.username=root jdbc.password=root
6、資料庫預設編碼方式
mysql的my.ini的配置檔案default-character-set=utf8 (更改需要重啟服務)
建立資料庫、資料表指定字符集
CREATE TABLE IF NOT EXISTS `mydb` ( `username` varchar(64) NOT NULL, `userid` int(11) NOT NULL, ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
7、tomcat
server.xml配置檔案
<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" URIEncoding="UTF-8" />
參考:
http://blog.csdn.net/chenmeng2192089/article/details/7994352/ 解決存到資料庫裡中文亂碼問題
http://www.jb51.net/article/41474.htm Mysql插入中文變為全問號???的問題 解決方法