关于Servlet中获取到Http传输过来的中文正常,而当数据插入到MySql中时为乱码或者问好的解决方案

1、当连接数据库时这样写

url="jdbc:mysql://localhost:3306/RQDataBase?useUnicode=true&characterEncoding=UTF-8"

2、如果是用连接池则用

url="jdbc:mysql://localhost:3306/RQDataBase?useUnicode=true&characterEncoding=UTF-8"

猜你喜欢

转载自blog.csdn.net/android_hdh/article/details/79261432