码迷,mamicode.com
首页 > 数据库 > 详细

Java web后台插入数据库中文乱码问题解决

时间:2017-06-13 12:45:30      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:prot   ogr   csdn   client   out   dir   eclipse   界面   protocol   

前言:项目想要避免乱码情况的出现,要保持服务器、数据库、项目、以及前端编码一致。
一、项目以及前端编码,设置。

myeclipse--->右键项目--->Properties--->Resource--->Text file encoding----->选择utf-8---->apply--->ok

 

二、tomcat6.x服务器编码设置

D:\apache-tomcat-6.0.37\conf\server.xml,

[html] view plain copy
  1. <Connector port="8080" protocol="HTTP/1.1"   
  2.              connectionTimeout="20000"   
  3.              redirectPort="8443"  URIEncoding="UTF-8"/>  
[html] view plain copy
  1. <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" URIEncoding="UTF-8"/>  


后面的URIEncoding="UTF-8"就是所添加进去的内容

 

三、数据库MySQL5.5设置;

①先打开 运行--->cmd--->net stop MySQL  关闭mysql的服务

②C:\Program Files (x86)\MySQL\MySQL Server 5.5\my.ini

修改如下四个字段为

[html] view plain copy
  1. [client]  
  2. port = 3306   
  3. default-character-set=utf8   
[html] view plain copy
  1. [mysql]  
  2. default-character-set=utf8  
[html] view plain copy
  1. [mysqld]  
  2.   
  3. character-set-server=utf8   
  4. port = 3306   
[html] view plain copy
  1. character-set-server=utf8  

保存。

③打开 运行--->cmd--->net start mysql  开启MySQL的服务
④打开MySQL的命令行界面,输入密码进入后

执行 show variables like ‘character%‘;该语句,显示如下即表示设置成功


技术分享

Java web后台插入数据库中文乱码问题解决

标签:prot   ogr   csdn   client   out   dir   eclipse   界面   protocol   

原文地址:http://www.cnblogs.com/tangwanzun/p/7000206.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!