Java中容易出現亂碼的地方以及解決方案

來源:互聯網
上載者:User
解決

(1)顯示中文JSP頁面:〈%@pageContentType="text/html; chaset=gb2312" %〉

(2)在Weblogic下使用JSTL在頭部添加:〈%@page pageEncoding="GBK"%〉

(3)中文頁面提交返回擷取參數值時:〈%request.setCharacterEncoding("gb2312"); %〉,

也可以採用下面的辦法統一處理,首先建立下面的類:

//**********************************************// /* * TODO 字元編碼過濾器     */     package summer.admin;     import javax.servlet.FilterChain;     import javax.servlet.ServletRequest;     import javax.servlet.ServletResponse;     import java.io.IOException;     import javax.servlet.Filter;     import javax.servlet.http.*;     import javax.servlet.ServletException;     import javax.servlet.FilterConfig;     /**     * @author Coldrain     * TODO 字元編碼過濾器     */     public class EncodingFilter implements Filter{     protected FilterConfig filterConfig;     private String targetEncoding = "gb2312";   /**     *初始化過濾器,和一般的Servlet一樣,它也可以獲得初始參數。     */     public void init(FilterConfig config) throws ServletException {     this.filterConfig = config;     if(config.getInitParameter("encoding") !=null){     this.targetEncoding = config.getInitParameter("encoding");     }     }   /**     *進行過濾處理,這個方法最重要,所有過濾處理的代碼都在此實現。     */     public void doFilter(ServletRequest srequest, ServletResponse sresponse, FilterChain chain)     throws IOException, ServletException {     System.out.println("使用以下方法對請求進行編碼:encoding="+targetEncoding);     HttpServletRequest request = (HttpServletRequest)srequest;     request.setCharacterEncoding(targetEncoding);     chain.doFilter(srequest,sresponse); // 把處理權發送到下一個     }     public void setFilterConfig(final FilterConfig filterConfig)     {     this.filterConfig=filterConfig;     }   //銷毀過濾器     public void destroy()     {     this.filterConfig=null;     }     } //************************************************************************//

然後在web.xml檔案裡添加下列配置:

    〈filter〉     〈filter-name〉encoding〈/filter-name〉     〈filter-class〉summer.admin.EncodingFilter〈/filter-class〉     〈init-param〉     〈param-name〉encoding〈/param-name〉     〈param-value〉gb2312〈/param-value〉     〈/init-param〉     〈/filter〉     〈filter-mapping〉     〈filter-name〉encoding〈/filter-name〉     〈url-pattern〉/*〈/url-pattern〉     〈/filter-mapping〉

(4)Struts中文問題:將中文轉換為Unicode字元,可以將下列內容存在一個批次檔進行:

    Set path==%path%; G:\JavaCode\Bug\web\WEB-INF\classes     native2ascii messages.properties messages_zh_CN.properties     //G:\JavaCode\Bug\web\WEB-INF\classes表示messages.properties檔案存放路徑

(5)weblogic中文問題解決直接在weblogic.xml添加下面的內容:

    〈charset-params〉     〈input-charset〉     〈resource-path〉/*〈/resource-path〉     〈java-charset-name〉GBK〈/java-charset-name〉     〈/input-charset〉     〈/charset-params〉

(6)JBuilder中文問題解決:修改user_zh.properties檔案(在系統硬碟Documents and Settings目錄下尋找):

添加相應的的字型(注意:要轉換為Unicode字元,比如\u5b8b\u4f53表示宋體):

    editor.display; fixed_fonts.1=Courier New     editor.display; fixed_fonts.10=Times New Roman     editor.display; fixed_fonts.2=Lucida Sans Typewriter     editor.display; fixed_fonts.3=\u4eff\u5b8b_GB2312     editor.display; fixed_fonts.4=\u5b8b\u4f53     editor.display; fixed_fonts.5=\u65b0\u5b8b\u4f53     editor.display; fixed_fonts.6=\u65b0\u7d30\u660e\u9ad4     editor.display; fixed_fonts.7=\u6977\u4f53_GB2312     editor.display; fixed_fonts.8=\u7d30\u660e\u9ad4     editor.display; fixed_fonts.9=\u9ed1\u4f53     editor.display; font_family=\u5b8b\u4f53     editor.display; font_size=13


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.