新客网WWW.XKER.COM:致力做中国最专业的网络学院!
学院: 操作系统 - 网络应用 - 服务器 - 网络安全 - 工具软件 - 办公软件 - Web开发 - 数据库 - 网页设计 - 图形图像 - 媒体动画 - 硬件学堂 - 存储频道 - QQ专区
您的位置:首页 > 软件开发 > Web开发 > JSP教程 > 正文:解决JSP开发Web程序中文显示三种方法

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

新客网 XKER.COM 2007-06-27 来源:IT专家网 收藏本文
 <%@ page language="java" pageEncoding="GBK" %>

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

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

  方法二:使用过滤器

  过滤器使用主要针对表单提交,插入数据库的数据都是?号。这也是应为tomcat不按request所指定的编码进行编码,还是自作主张的采用默认编码方式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); 
  } 
  }

共2页: 上一页 [1] [2] 下一页
收藏】 【评论】 【推荐】 【投稿】 【打印】 【关闭
发表评论
要记得去论坛讨论,点击注册新会员匿名评论
评论内容:不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
阅读排行
随机推荐
实用信息推荐