JSP頁面亂碼的5種解決方案

來源:互聯網
上載者:User

JSP編程中網頁顯示出現亂碼的情況,基本可以歸為5類:

1. JSP頁面顯示亂碼。

2. Servlet接收Form/Request傳遞的參數時顯示為亂碼

3. JSP接收Form/Request傳遞的參數時顯示為亂碼

4. 用<jsp:forward page="catalog2.html"></jsp:forward>時頁面顯示亂碼

5. 資料庫存取的時候產生亂碼。

下面給出全部解決方案:

步驟/方法

1. JSP頁面顯示亂碼。

第一種為在頁面的開頭加上:

<%@ page language="java" contentType="text/html; charset=GBK" pageEncoding="GBK"%>

註:有時候如果不再頁面開頭加上這句,則頁面中無法儲存中文字元,並提示:中文字元在不能被iso-8859-1字元集mapped,這是由於預設情況下,JSP是用iso-8859-1來編碼的,可以在Window->Preferences->General->Content Type選項下,在右邊的視窗選擇Text->Jsp,然後在下面的Default Encoding由預設的iso-8859-1改為GBK,然後點擊update即可解決。

本欄目更多精彩內容:http://www.bianceng.cn/webkf/JSP/

然而這種方式會帶來一些問題:由於這一句在其他檔案include該檔案的時候不能被繼承,所以include它的檔案也需要在檔案開頭加上這句話,此時如果用的是pageEncoding="gbk"則會出現問題。類似於org.apache.jasper.JasperException: /top.jsp(1,1) Page directive: illegal to have multiple occurrences of contentType with different values (old: text/html;charset=GBK, new: text/html;charset=gbk).

類似地,如果兩個檔案一個用的是gbk,一個用的是gb2312也會出現問題。

另一種更好的解決方式為:

在項目的web.xml中添加以下片段:

<jsp-config>

<jsp-property-group>

<description>

Special property group for JSP Configuration JSP example.

</description>

<display-name>JSPConfiguration</display-name>

<url-pattern>*.jsp</url-pattern>

<el-ignored>true</el-ignored>

<page-encoding>GBK</page-encoding>

<scripting-invalid>false</scripting-invalid>

<include-prelude></include-prelude>

<include-coda></include-coda>

</jsp-property-group>

<jsp-property-group>

<description>

Special property group for JSP Configuration JSP example.

</description>

<display-name>JSPConfiguration</display-name>

<url-pattern>*.html</url-pattern>

<el-ignored>true</el-ignored>

<page-encoding>GBK</page-encoding>

<scripting-invalid>false</scripting-invalid>

<include-prelude></include-prelude>

<include-coda></include-coda>

</jsp-property-group>

</jsp-config>

2

相關文章

聯繫我們

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