JSP include HTML出現亂碼 問題解決

2021-09-23 21:02:26 字數 1338 閱讀 3929

當使用引入html檔案時,

並且jsp 和 html的 編碼都為utf-8;但是會出現亂碼,

就是在使用而這個編碼是系統預設的gbk 所以在這個時候和自己的編碼發生衝突 就會出現亂碼,

我們來了解下 web.xml中jsp-config的配置詳解

包括 和 兩個子元素。

其中元素在jsp 1.2 時就已經存在;

而是jsp 2.0 新增的元素。

元素主要有八個子元素,它們分別為:

1.:設定的說明 

2.:設定名稱 

3.:設定值所影響的範圍,如: /ch2 或 /*.jsp

4.:若為 true,表示不支援 el 語法 

5.:若為 true,表示不支援 語法 

6.:設定 jsp 網頁的編碼 

7.:設定 jsp 網頁的抬頭,擴充套件名為 .jspf

8.:設定 jsp 網頁的結尾,擴充套件名為 .jspf

解決問題的方法在web.xml中新增以下**:

<

jsp-config

>

<

jsp-property-group

>

<

description

>

special property group for jsp configuration html

example.

description

>

<

display-name

>jspconfiguration

display-name

>

<

url-pattern

>*.html

url-pattern

>

<

el-ignored

>true

el-ignored

>

<

page-encoding

>utf-8

page-encoding

>

<

scripting-invalid

>false

scripting-invalid

>

<

include-prelude

>

include-prelude

>

<

include-coda

>

include-coda

>

jsp-property-group

>

jsp-config

>

CoordinatorLayout布局出錯

做專案的時候,用 com.android.support design 23.1.1 寫coordinatorlayout的時候 一直都是好好的,但使用fresco 的時候,coordinatorlayout 布局直接報 binary xml file line 9 error inflating ...

this引用逸出

public class unsafeclass 如上述 所示,在建構函式中定義新的執行緒或者發布會導致this引用逸出,此時的問題就在於建構函式還沒有構造完成.public class safeclass public safeclass newinstance button button 發布t...

出棧序列統計

問題描述 棧是常用的一種資料結構,有 n令元素在棧頂端一側等待進棧,棧頂端另一側是出棧序列。你已經知道棧的操作有兩 種 push 和pop 前者是將乙個元素進棧,後者是將棧頂元素彈出。現在要使用這兩種操作,由乙個操作序列可以得到一系列的輸出序列。請你程式設計求出對於給定的 n,計算並輸出由運算元序列...