问题:如果eclipse中项目的编码方式为utf-8
插入数据后,在数据库中查看后,汉字出现乱码情况
解决方法:
1.在获取连接的时候将conn = DriverManager.getConnection("jdbc:mysql://localhost:3036/game","root","root");修改为
conn = DriverManager.getConnection("jdbc:mysql://localhost:3036/game?useUnicode=true&characterEncoding=utf-8","root","root");
2.在MySQL的安装盘中将my.ini 中修改为default-character-set=utf8。保存后,重启服务
-----计算机管理--》服务--》masql服务重启。