1,加入类 com.ddy.struts.filter.SetCharacterEncodingFilter
package com.ddy.struts.filter;
import javax.servlet.*;
import java.io.IOException;
/**
* <p>
* Filter that sets the character encoding to be used in parsing the incoming
* request, either unconditionally or only if the client did not specify a
* character encoding. Configuration of this filter is based on the following
* initialization parameters:
* </p>
* <ul>
* <li><strong>encoding</strong> - The character encoding to be configured for
* this request, either conditionally or unconditionally based on the
* <code>ignore</code> initialization parameter. This parameter is required,
* so there is no default.</li>
* <li><strong>ignore</strong> - If set to "true", any character encoding
* specified by the client is ignored, and the value returned by the
* <code>selectEncoding()</code> method is set. If set to "false,
* <code>selectEncoding()</code> is called <strong>only</strong> if the
* client has not already specified an encoding. By default, this parameter is
* set to "true".</li>
* </ul>
*
* <p>
* Although this filter can be used unchanged, it is also easy to subclass it
* and make the <code>selectEncoding()</code> method more intelligent about
* what encoding to choose, based on characteristics of the incoming request
* (such as the values of the <code>Accept-Language</code> and
* <code>User-Agent</code> headers, or a value stashed in the current user's
* session.
* </p>
*
* @author <a href="mailto:jwtronics@yahoo.com">John Wong</a>
*
* @version $Id: SetCharacterEncodingFilter.java,v 1.1 2002/04/10 13:59:27
* johnwong Exp $
*/
public class SetCharacterEncodingFilter implements Filter {
// ----------------------------------------------------- Instance Variables
/**
* The default character encoding to set for requests that pass through this
* filter.
*/
protected String encoding = null;
/**
* The filter configuration object we are associated with. If this value is
* null, this filter instance is not currently configured.
*/
protected FilterConfig filterConfig = null;
/**
* Should a character encoding specified by the client be ignored?
*/
protected boolean ignore = true;
// --------------------------------------------------------- Public Methods
/**
* Take this filter out of service.
*/
public void destroy() {
this.encoding = null;
this.filterConfig = null;
}
/**
* Select and set (if specified) the character encoding to be used to
* interpret request parameters for this request.
*
* @param request
* The servlet request we are processing
* @param result
* The servlet response we are creating
* @param chain
* The filter chain we are processing
*
* @exception IOException
* if an input/output error occurs
* @exception ServletException
* if a servlet error occurs
*/
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
// Conditionally select and set the character encoding to be used
if (ignore || (request.getCharacterEncoding() == null)) {
String encoding = selectEncoding(request);
if (encoding != null)
request.setCharacterEncoding(encoding);
}
// Pass control on to the next filter
chain.doFilter(request, response);
}
/**
* Place this filter into service.
*
* @param filterConfig
* The filter configuration object
*/
public void init(FilterConfig filterConfig) throws ServletException {
this.filterConfig = filterConfig;
this.encoding = filterConfig.getInitParameter("encoding");
String value = filterConfig.getInitParameter("ignore");
if (value == null)
this.ignore = true;
else if (value.equalsIgnoreCase("true"))
this.ignore = true;
else if (value.equalsIgnoreCase("yes"))
this.ignore = true;
else
this.ignore = false;
}
// ------------------------------------------------------ Protected Methods
/**
* Select an appropriate character encoding to be used, based on the
* characteristics of the current request and/or filter initialization
* parameters. If no character encoding should be set, return
* <code>null</code>.
* <p>
* The default implementation unconditionally returns the value configured
* by the <strong>encoding</strong> initialization parameter for this
* filter.
*
* @param request
* The servlet request we are processing
*/
protected String selectEncoding(ServletRequest request) {
return (this.encoding);
}
}// EOC
2,修改WEB.XML,配置filter
<filter>
<filter-name>Set Character Encoding</filter-name>
<filter-class>
com.ddy.struts.filter.SetCharacterEncodingFilter
</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>GB2312</param-value>
</init-param>
<init-param>
<param-name>ignore</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>Set Character Encoding</filter-name>
<servlet-name>action</servlet-name>
</filter-mapping>
3,设定jsp页面的编码(必须于上面encoding标签中设定一致)
<%@ page language="java" contentType="text/html; charset=GB2312"
pageEncoding="GB2312"%>
分享到:
相关推荐
不同的编码标准对应不同的字符集,可能导致乱码问题。在J2EE应用中,字符编码尤其重要,因为服务器需要正确识别和处理来自不同源(如浏览器请求)的字符数据。 "字符编码过滤器"是一种在J2EE应用程序中常见的解决...
例如,可以使用字符串数组,将每个字符串转换为`lambda`,然后应用到数据集上。 总结起来,将字符串转换为`lambda`表达式是编程中的一种高级技巧,尤其在动态计算和用户交互的场合中非常有用。通过使用`ast`模块,...
2. 使用Servlet过滤器(filter)来转换HTTP请求的编码,确保所有请求都被转换为UTF-8。例如,可以使用`request.setCharacterEncoding("UTF-8")`。 3. 在JSP文件头部声明使用UTF-8编码:`;charset=UTF-8" language=...
在实际项目中,Filter的应用非常广泛,例如实现登录验证、字符集编码转换、GZIP压缩、安全控制等。通过理解和熟练使用Filter,开发者可以更好地控制和优化Web应用程序的行为。 由于提供的压缩包文件名为`webfilter`...
乱码问题主要源自计算机操作系统的字符编码方式以及Java内部使用的UNICODE编码之间的转换过程。在深入解析这一过程后,我们可以透视Java中文问题产生的根本原因,并给出最优化的解决方案。 首先,计算机最初的操作...
同时,Filter也常用于实现跨站请求伪造(CSRF)防护、内容编码(如GZIP)转换、字符集转换等功能,增强了Web应用程序的安全性和效率。 在压缩包文件"ServletLearningChapter2_2"中,可能包含了关于Servlet和Filter...
Filter是一个实现了javax.servlet.Filter接口的类,它可以捕获请求并进行相应的操作,如身份验证、字符集转换、日志记录等。Filter的生命周期包括初始化、doFilter、销毁三个阶段。 **创建Filter** 创建一个Filter...
中文字符集的编码方式多样,包括GBK、GB2312、UTF-8等,不同编码间的转换可能导致乱码问题。本文将详细讲解如何在Java中创建一个过滤器来转换中文字符。 首先,我们要理解Java中的字符编码概念。Java内部使用...
5. **字符集转换**: 自动将请求和响应的字符集转换为服务器支持的格式。 **五、Filter的级联与多Filter处理** 在实际应用中,可能需要多个Filter协同工作。通过`FilterChain`对象,我们可以依次调用下一个Filter,...
在本例中,我们可能有一个专门的Filter来处理请求和响应的编码转换,确保数据始终以正确的字符集进行解码和编码。 实现全站防乱码控制通常包括以下步骤: 1. **配置Filter**:在web.xml配置文件中,我们需要声明一...
在诸如出租车发票这样的机打字符图片合成场景中,"filter-font.zip"中的字体库能够提供极为丰富的视觉样式,而对应的字符集文件则确保了文字信息的准确性,这对于OCR技术读取和转换来说至关重要。 例如,在出租车...
在这个练习中,过滤器可能检查请求头中的字符集,并根据需要转换请求参数和响应内容的编码,以避免乱码问题。 ```java public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain...
这个问题主要涉及到数据库的字符集设置、应用程序的编码配置以及数据传输过程中的编码转换。以下是一些关键知识点和解决步骤: 1. **数据库字符集**:数据库的字符集决定了它可以存储哪些字符。在示例中,表的字符...
6. **字符集转换**:统一处理请求和响应的字符编码问题。 综上所述,Servlet Filter是Java Web开发中不可或缺的一部分,它提供了强大的请求处理能力,帮助开发者实现复杂的功能需求,同时保持代码结构清晰和模块化...
`Request`类中的`toChi()`方法用于将ISO-8859-1编码的字符串转换为GBK编码,这是处理从西方字符集转换到中文字符集的常见做法。当接收到POST请求时,`doFilter()`方法会调用`request.setCharacterEncoding("GBK")`来...
MNIST数据集是一个广泛使用的手写数字数据库,包含60,000个训练样本和10,000个测试样本,每个样本是28x28像素的灰度图像。这个数据集被广泛用于训练各种图像分类算法,尤其是CNN,因为它提供了简单但有挑战性的环境...
字符编码Filter会确保请求和响应都使用正确的字符集;日志Filter则记录请求和响应的详细信息,便于调试和监控。 Struts2框架也利用了Filter模式。在Struts2中,StrutsPrepareAndExecuteFilter是主要的过滤器,它...
Filter还可以用于日志记录、性能监控、GZIP压缩、字符集转换等实用功能。例如,通过Filter,我们可以轻松地在每个请求和响应中添加日志,以帮助调试和性能分析。对于性能敏感的应用,Filter可用于实现数据压缩,减少...
### Informatica PowerCenter 常用转换组件使用说明 #### 1. Expression 组件 - **作用**:Expression 组件能够实现对单行记录的表达式计算,支持各种非聚合类型的计算任务。它是一个非常灵活的组件,可以用来进行...