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

JSP表单提交中文乱码解决方案

时间:2016-08-07 18:33:42      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

分2种提交方式,解决方案不同:

1、form表单提交方式为get

技术分享

乱码:

技术分享

解决方案:

第1种方法:tomcat-config-sever.xml 

技术分享

第2种方法:

<%
String username = request.getParameter("username");
String name = new String(username.getBytes("ios-8859-1"),"utf-8");

String password = request.getParameter("password");
out.print("--用户名是:"+name+"--密码是:"+password);
%>

 

2、form表单提交方式为post

直接在b.jsp中加入:

<%
    request.setCharacterEncoding("utf-8");
    String username = request.getParameter("username");
    //String name = new String(username.getBytes("ios-8859-1"),"utf-8");
    
    String password = request.getParameter("password");
    out.print("--用户名是:"+username+"--密码是:"+password);
 %>

 

JSP表单提交中文乱码解决方案

标签:

原文地址:http://www.cnblogs.com/sincoolvip/p/5746678.html

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