JSP全名為Java Server Pages,中文名叫java伺服器頁面,其根本是簡化的Servlet設計,它 [1] 是由Sun Microsystems公司倡導、許多公司參與一起建立的動態網頁技術標準。
jsp編碼的設定:
#1. jsp頁面編碼: jsp檔案本身的編碼
pageEncoding:<%@ page pageEncoding="UTF-8"%>
2. web頁面顯示編碼:jsp的輸出流在瀏覽器中顯示的編碼
contentType: <%@ page contentType="text/html; charset=UTF-8"%>
3. html頁面charset:
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
web頁輸入編碼: 輸入框輸入的字體編碼
4. web伺服器輸入的請求流:web Server對應瀏覽器的請求資料
setCharacterEncoding:request.setCharacterEncoding(),response.setCharacterEncoding()
5 .web伺服器輸出的回應流:web Server對應瀏覽器的輸出資料
setContentType:response.setContentType()
以上是jsp怎麼設定編碼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!