码迷,mamicode.com
首页 > Web开发 > 详细

jsp中文乱码

时间:2017-05-29 11:09:09      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:位置   utf-8   port   tomcat   response   res   name   nec   har   

中文乱码
tomcat目录server.xml
connector port="8080" 位置
添加一条 useBodyEncodingForURI="true" //使用页面设置的编码

request.setCharacterEncoding("utf-8");//设置编码格式
response.setCharacterEncoding("utf-8");

String str=new String(name.getbytes("ISO-8859-1"),"utf-8");//针对单个变量转码

或者

添加一条 URIEncoding="UTF-8"  还是要打一遍request的设置编码
page里改了编码格式的话就不用设置response

 

jsp中文乱码

标签:位置   utf-8   port   tomcat   response   res   name   nec   har   

原文地址:http://www.cnblogs.com/m97i/p/6917367.html

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