码迷,mamicode.com
首页 > 编程语言 > 详细

Java中文乱码处理

时间:2017-08-15 14:14:22      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:bsp   new   port   redirect   size   乱码   response   request   style   

一、处理get方法中文乱码

方法1   String name = new String(request.getParameter("userName").getBytes("iso-8859-1"));


方法2   在tomcat的conf文件下server.xml中redirectPort="8443"位置后加入:

            URIencoding="GBK"

二、处理post方法中文乱码

       request.setCharacterEncoding="GBK";
       response.setCharacterEncoding="GBK
";

Java中文乱码处理

标签:bsp   new   port   redirect   size   乱码   response   request   style   

原文地址:http://www.cnblogs.com/ljbguanli/p/7364620.html

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