码迷,mamicode.com
首页 > 其他好文 > 详细

request 中文乱码解决方法

时间:2019-08-03 12:30:10      阅读:351      评论:0      收藏:0      [点我收藏+]

标签:思路   post请求   div   页面   char   odi   enc   ram   中文   

POST请求

request.setCharacterEncoding("UTF-8");

 

GET和POST请求

页面:UTF-8
Tomcat:iso8859-1

解决思路:
页面(utf-8编码) - Tomcat(iso8859-1解码)
先iso8859-1编码,再用utf-8解码
String str = request.getParameter("");
new String(str.getBytes("iso8859-1"),"UTF-8")

 

request 中文乱码解决方法

标签:思路   post请求   div   页面   char   odi   enc   ram   中文   

原文地址:https://www.cnblogs.com/archer-wen/p/11294254.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!