2、进入Window--Preferences--MyEclipse--Files and Editors,将这个选项下面的:ASP and PHP、CSS、DTD、HTML、JSP、XML中的字符编码全部更改为utf-8;
response.setCharacterEncoding("UTF-8");
二、设置mysql的字符编码,需要关闭mysql服务,否者之前导致的结果是第一次修改成稿,第二次还出出现重复的乱码问题:
修改my.init中的编码方式为gbk如下 (一定得是gbk 如果是utf8数据库将不能插入中文数据 gb2312也不行)
要修改的内容:
三、配置文件的修改方案:
xml配置文件的修改方案:
<property name="connection.url">jdbc:mysql://localhost:3306/yinhang?useUnicode=true&characterEncoding=gbk</property>
properties属性文件的修改方案:
#hibernate.connection.url jdbc:mysql://localhost:3306/yinhang?useUnicode=true&characterEncoding=gbk
Eclipse查询MySql、添加中文乱码问题,布布扣,bubuko.com
原文地址:http://blog.csdn.net/liwuyang2013/article/details/25746089