2007-06-26

解决JSP开发Web程序中文显示的三种方法

来源: 赛迪网 作者:dxaw 评论 0 条
 

方法一:最简单也是用的最多的方法

<%@ page language="java" pageEncoding="GBK" %>

或者<%@ page contenttype="text/html;charset=gbk";>这里可以用gb2312或者gbk,只是gbk比gb2312支持跟多的字符。

这个方法用于jsp页面中的中文显示。

方法二:使用过滤器

过滤器使用主要针对表单提交,插入数据库的数据都是?号。这也是应为tomcat不按request所指定的编码进行编码,内容来自中国站长资讯网(www.chinahtml.com)还是自作主张的采用默认编码方式iso-8859-1编码。

编写一个SetCharacterEncodingFilter类。

import java.io.IOException;

import javax.servlet.Filter;

import javax.servlet.FilterChain;

import javax.servlet.FilterConfig;

import javax.servlet.ServletException;

import javax.servlet.ServletRequest;

import javax.servlet.ServletResponse;



public class SetCharacterEncodingFilter implements Filter {

 protected String encoding = null;

 protected FilterConfig filterConfig = null;

 protected boolean ignore = true;



 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

   this.ignore=false;

 }



 public void doFilter(

ServletRequest request, ServletResponse response, FilterChain chain)

 throws IOException, ServletException {

 // TODO 自动生成方法存根

 if (ignore || (request.getCharacterEncoding() == null)) {

  String encoding = selectEncoding(request);

  if (encoding != null)

   request.setCharacterEncoding(encoding);

 }

 chain.doFilter(request, response);

}



public void destroy() {

 // TODO 自动生成方法存根

 this.encoding = null;

 this.filterConfig = null;

}



protected String selectEncoding(ServletRequest request) {

 return (this.encoding);

}

}

然后再web.xml加上


(本文仅表明作者个人观点,不代表本站及其管理员立场.) 推荐 收藏 投稿 打印 返回 关闭
上一篇:C#中时间格式的转换  
下一篇:几个C#编程的小技巧
    评论加载中…
<!-- Set Character Encoding-->

<filter>

 <filter-name>Set Character Encoding</filter-name>

 <filter-class>com.struts.common.SetCharacterEncodingFilter</filter-class>

 <init-param>

  <param-name>encoding</param-name>

  <param-value>UTF-8</param-value>

 </init-param>

</filter>

<filter-mapping>

 <filter-name>Set Character Encoding</filter-name>

  <url-pattern>/*</url-pattern>

 </filter-mapping>

<!-- Set Character Encoding-->
共2页: 上一页 1 [2] 下一页
 推荐文章
     

网站首页  -  网站地图 -   站长论坛  -  网站投稿  -    -  网站管理
Copyright © 2008 芜湖站长站 All Rights Reserved 皖ICP备07500611号