這篇文章主要介紹解決MySQL+jsp出現(xiàn)亂碼的問題,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
成都創(chuàng)新互聯(lián)專注于阿合奇網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供阿合奇營銷型網(wǎng)站建設(shè),阿合奇網(wǎng)站制作、阿合奇網(wǎng)頁設(shè)計(jì)、阿合奇網(wǎng)站官網(wǎng)定制、成都微信小程序服務(wù),打造阿合奇網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供阿合奇網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
JSP頁面?zhèn)鬏數(shù)組ySQL數(shù)據(jù)庫時(shí),中文為亂碼(數(shù)據(jù)庫中存儲(chǔ)亂碼)。下面我們就來看一下如何解決。
1、將所有的涉及到編碼的都設(shè)置為 utf8(utf-8)。
設(shè)置數(shù)據(jù)庫編碼:
命令行執(zhí)行:mysql> show variables like 'character%'; 可以查看是否為utf8
mysql> show variables like 'character%'; +--------------------------+------------------------------------------------------+ | Variable_name | Value | +--------------------------+------------------------------------------------------+ | 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 | D:\Program Files\mysql-5.6.20-winx64\share\charsets\ | +--------------------------+------------------------------------------------------+
character_set_server項(xiàng)不知道如何設(shè)置,不過不影響。修改數(shù)據(jù)庫編碼執(zhí)行命令: mysql> alter database db_name character set utf8;
修改其他編碼: mysql> set names 'utf8';
設(shè)置JSP頁面編碼:在頁面頂部添加
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
修改數(shù)據(jù)庫連接DriverManager.getConnection(url, usr, pwd)的url:
String url = "jdbc:mysql://localhost:3306/db_name?useUnicode=true&characterEncoding=utf-8";
2、post傳輸方式
在發(fā)送頁面和接收頁面頂部都添加以下代碼:
<% request.setCharacterEncoding("UTF-8"); response.setCharacterEncoding("UTF-8"); response.setContentType("text/html; charset=utf-8"); %>
以上是解決mysql+jsp出現(xiàn)亂碼的問題的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!