浏览 4863 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2017-04-06
确认为Hibernate插入中文字符问题,解决办法: 1)ssh整合jdbc.properties,修改jdbc连接url为: jdbc.url=jdbc:mysql://localhost:3306/ssh?useUnicode=true&characterEncoding=UTF8 2)hibernate.cfg.xml情况,修改jdbc连接url为: <property name="connection.url">jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF8</property> 2.get方式发送http请求,url参数包含中文字符,action获取中文字符出现乱码,解决办法: 1)获取url中文参数时使用如下代码: String name = new String(userInfo.getName().getBytes("ISO-8859-1"), "UTF-8"); 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |