首页 > 编程语言 > 详细

spring乱码处理

时间:2020-12-03 21:58:51      阅读:43      评论:0      收藏:0      [点我收藏+]

1). post乱码

       在web.xml添加post乱码filter:CharacterEncodingFilter

  2). 对于get请求中文参数出现乱码解决方法有两个:

       a. 修改tomcat配置文件添加编码与工程编码一致,如下:

           <Connector URIEncoding="utf-8" connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>

       b. 对参数进行重新编码:

           String userName = new  String(request.getParamter("userName").getBytes("ISO8859-1"),"utf-8")

           ISO8859-1是tomcat默认编码,需要将tomcat编码后的内容按utf-8编码

spring乱码处理

原文:https://www.cnblogs.com/glb79809-glb/p/14081970.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!