eclipse向mysql插入中文数据乱码

来源:互联网 发布:淘宝靠谱ipad二手店铺 编辑:程序博客网 时间:2024/05/21 06:34



经过测试发现是url没有区分大小写造成的乱码,原url如下:

jdbc:mysql://localhost:3306/class?useUnicode=true&characterEncoding=UTF-8


修改后的url:

jdbc:mysql://localhost:3306/class?useUnicode=true&characterEncoding=utf-8



经测试,可简化为:
url=jdbc:mysql://localhost:3306/class?characterEncoding=utf-8

0 0
原创粉丝点击