JSP提交中文亂碼的解決

來源:互聯網
上載者:User

今天一個jsp傳參時中文顯示為亂碼,在頁面添加

Code:
  1. <%@ page language="java" contentType="text/html; charset=utf-8"  
  2.  pageEncoding="utf-8"%>  
  3.   
  4. <%     request.setCharacterEncoding("utf-8"); %>  

中文就可以正常顯示了。

最近改了MyEclipse的一些預設的編碼設定,總產生中文亂碼,讓我頭痛。我要開始好好研究下了。

 ------------------------------

http://blog.163.com/luyufen_luise/blog/static/5777392520103132253440/

上面這個網站上看到一個配置過濾器的方法只需要在web.xml檔案配置下就能解決頁面中文亂碼的方法。

開啟WEB-INF目錄下的web.xml檔案,添加下面的內容:

Code:
  1. <filter>  
  2.     <filter-name>encodingFilter</filter-name>  
  3.     <filter-class>  
  4.         org.springframework.web.filter.CharacterEncodingFilter  
  5.     </filter-class>  
  6.     <init-param>  
  7.         <param-name>encoding</param-name>  
  8.         <param-value>utf-8</param-value>  
  9.     </init-param>  
  10. </filter>  
  11. <filter-mapping>  
  12.     <filter-name>encodingFilter</filter-name>  
  13.     <url-pattern>/*</url-pattern>  
  14. </filter-mapping>  

該段配置是用到了Spring的jar包中的過濾器來對中文亂碼進行處理,很方便也很實用,希望能對相關問題的技術人員有協助!

如果你不使用spring的jar包那就要自己寫過濾器了。

 

相關文章:

http://applelini.blog.163.com/blog/static/98652780201001425758226/?fromdm&fromSearch&isFromSearchEngine=yes

http://chenmingming2000.blog.163.com/blog/static/2000687520094223110187/?fromdm&fromSearch&isFromSearchEngine=yes

http://applelini.blog.163.com/blog/static/98652780201001425758226/?fromdm&fromSearch&isFromSearchEngine=yes

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.