解决中文乱码问题

乱码出现的原因

    java内核是unicode的。但Java总是根据操作系统的默认编码字符集来决定字符串的初始编码,而且Java系统的输入和输出的都是采取操作系统的默认编码,而数据库、文件、网络传输中的字节流……采用的编码更是各不相同。所以不可避免的就会出现烦人的乱码问题了。

解决办法

1、GB2312、GBK、Unicode(UTF8)?
        从字符集的大小比较 GB2312 < GBK < UTF8,很显然,如果我们采用UTF8作为系统编码的话,是不会有错的。而且如果你要考虑国际化的话,UTF8似乎是你唯一的选择
2、开发和编译代码时指定字符集为GB2312
  JBuilder和Eclipse都可以在项目属性中设置。
3、使用过滤器

java 代码
  1. public class EncodingFilter implements Filter{   
  2.   
  3. protected FilterConfig config = null;   
  4.   
  5. protected String encoding = null;   
  6.   
  7. public void init(FilterConfig filterConfig) {   
  8.   
  9.   this.encoding = filterConfig.getInitParameter("encoding");   
  10.   this.filterConfig = filterConfig;   
  11.   
  12. }   
  13.   
  14. public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain)   
  15. throws java.io.IOException, javax.servlet.ServletException{   
  16.               if (req.getCharacterEncoding() == null || !req.getCharacterEncoding().equals(encoding)){   
  17.                          req.setCharacterEncoding(encoding);   
  18.               }   
  19.              chain.doFilter(req, res);   
  20. }   
  21.   
  22. public void destroy() {   
  23.       this.encoding = null;   
  24.       this.filterConfig = null;   
  25. }   
  26. }   

4.web.xml

在web.xml文件中需要描述一下过滤器:

xml 代码
  1. <filter>  
  2.     <filter-name>Set Character Encoding</filter-name>  
  3.     <filter-class>com.capinfo.filter.SetCharacterEncodingFilter</filter-class>  
  4.     <init-param>  
  5.         <param-name>encoding</param-name>  
  6.         <param-value>GB2312</param-value>  
  7.     </init-param>  
  8.   </filter>  
  9.   <filter-mapping>  
  10.     <filter-name>Set Character Encoding</filter-name>  
  11.     <url-pattern>/*</url-pattern>  
  12.   </filter-mapping>  

5.在JSP页面中

注意:如果在url中传递带有中文的的数据

如:http://localhost:8088/Struts-demo/upload.do?filename=如何规划职业发展道路.pdf
那么在后台需要这么写才能得到不是乱码的"文件名".

String fileName = new String(request.getParameter("filename").getBytes("ISO-8859-1"), "GB2312");

response.addHeader("Content-Disposition", "attachment;   filename=\"" + new String(fileName.getBytes("GB2312"), "ISO-8859-1") + "\"");

来取得url传递过来的fileName中文参数.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值