html中form表单向Jsp提交中文乱码问题基本解决办法

时间:2021-08-18 13:06:22

一、表单提交的乱码处理

  表单提交分为GET和POST两种提交方式。两种方式的乱码解决又不一样,用POST提交只需要在接受的时候加上request.setCharacterEncoding("utf-8");而GET方法处理应该将接收过来的值打碎成ISO-8859-1编码的,然后再组装成UTF-8的,new String(request.getParameter(param).getBytes("iso8859-1"),"UTF-8"),或者在from表单加上 accept-charset="UTF-8"。

二、过滤器处理乱码问题

  如果每次接收都像上面那样去处理的话肯定是太麻烦了,用过滤器来处理请求的乱码问题很方便,只需要写一个过滤器,就可以过滤所有请求页面的乱码问题了。至于如何用过滤器处理乱码请看下文。不过值得注意的是,如果使用Struts的话,在web.xml里面处理编码的过滤器必须在struts过滤器前面注册,否则所有页面都不会经过过滤器。

首先写一个过滤器的类,如下:

html中form表单向Jsp提交中文乱码问题基本解决办法
 1 package com.util;
2
3 import java.io.IOException;
4 import java.io.UnsupportedEncodingException;
5
6 import javax.servlet.Filter;
7 import javax.servlet.FilterChain;
8 import javax.servlet.FilterConfig;
9 import javax.servlet.ServletException;
10 import javax.servlet.ServletRequest;
11 import javax.servlet.ServletResponse;
12 import javax.servlet.http.HttpServletRequest;
13 import javax.servlet.http.HttpServletRequestWrapper;
14 import javax.servlet.http.HttpServletResponse;
15 import javax.servlet.http.HttpSession;
16
17
18 //过滤器处理表单传到servlet的乱码问题
19 public class MyFilter implements Filter{
20 //自写一个request换掉原来的request,重写里面的getParemeter方法,可以设置编码
21 class MyRequest extends HttpServletRequestWrapper{
22
23 @Override
24 public String getParameter(String param) {
25 String value = null;
26 try {
27 //post
28 super.setCharacterEncoding(encoding);//把编码转换为encoding
29 value = super.getParameter(param);
30 if(super.getMethod().equalsIgnoreCase("GET")){
31 if(value!=null){
32 value = new String(value.getBytes("iso8859-1"),encoding);
33 }
34 }
35 } catch (UnsupportedEncodingException e) {
36 // TODO Auto-generated catch block
37 e.printStackTrace();
38 }
39 return value;
40 }
41
42 public MyRequest(HttpServletRequest request) {
43 super(request);
44 }
45
46 }
47 protected String encoding=null;
48 public void destroy() { //销毁
49 // TODO Auto-generated method stub
50 this.encoding=null;
51 }
52 //对编码问题进行转换
53 public void doFilter(ServletRequest request, ServletResponse response,
54 FilterChain chain) throws IOException, ServletException {
55 // TODO Auto-generated method stub
56 response.setContentType("text/html;charset="+encoding);
57 //过滤未登录用户
58 HttpServletRequest req = (HttpServletRequest) request;
59 HttpServletResponse resp = (HttpServletResponse) response;
60 String path=req.getServletPath();
61 String param=req.getQueryString();
62 if(path!=null){
63 path=path+"?"+param;//全请求路径
64 }
65 if(path.endsWith("myAddress")||path.endsWith("myJingDong")||path.indexOf("myShouCang")!=-1||path.endsWith("updateUser")||path.indexOf("showOrder")!=-1||path.indexOf("showValidOrder")!=-1||path.indexOf("showCancelOrder")!=-1||path.indexOf("fillOrder")!=-1){
66 HttpSession session = req.getSession();
67 String userName = (String) session.getAttribute("username");
68 if(userName == null){
69 session.setAttribute("url", path.replaceFirst("/", ""));
70 System.out.println(session.getAttribute("url"));
71 resp.sendRedirect("user.do?op=loginAction");
72 return;
73 }
74 }
75 //把过滤器给下一个过滤器或资源处理器
76 chain.doFilter(new MyRequest((HttpServletRequest) request), response);
77 }
78
79 public void init(FilterConfig filterConfig) throws ServletException {
80 // TODO Auto-generated method stub
81 this.encoding=filterConfig.getInitParameter("encoding");//encoding在web.xml中指定
82 }
83
84 }
html中form表单向Jsp提交中文乱码问题基本解决办法

然后在web.xml对该过滤器进行注册和映射:

html中form表单向Jsp提交中文乱码问题基本解决办法
<filter>
<filter-name>EncodingFilter</filter-name>
<filter-class>com.util.MyFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>utf-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>EncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
html中form表单向Jsp提交中文乱码问题基本解决办法


上面写的过滤器MyFilter类,本来只能处理post提交的数据(post是先处理后接收,get是先接收后处理)。

但是MyFilter里面在对任何页面过滤的时候,来了一个偷梁换柱:把原来客户端请求的request给换掉了,换成自己定义的一个request了,即内部类MyRequest,不过该类要继承一个类HttpServletRequestWrapper。

在自定义的一个内部类MyRequest里面,实现了一个好强大的功能,就是重写了request的getParameter()方法。该方法里面即处理了post提交,又能处理get提交,返回的值就是处理后的值,所以该过滤器就能实现处理post和get提交的乱码问题!


三.get方式 可以再server.xml的8080端口 节点中增加编码

打开你运行项目的tomcat 文件目录,找到 tomcat目录下的\apache-tomcat\conf\server.xml 文件,找到你的端口所在所在的xml配置 <Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" (新添加)URIEncoding="utf-8" /> 在其后面添加上 URIEncoding="utf-8",重启tomcat,再次运行