主頁 > 知識(shí)庫 > JSP利用過濾器解決request中文亂碼問題

JSP利用過濾器解決request中文亂碼問題

熱門標(biāo)簽:南昌市地圖標(biāo)注app 好操作的電話機(jī)器人廠家 南京新思維電話機(jī)器人 百度地圖添加標(biāo)注圖標(biāo)樣式 地圖標(biāo)注市場(chǎng)怎么樣 如何用中國(guó)地圖標(biāo)注數(shù)字點(diǎn) 聊城智能電銷機(jī)器人外呼 企業(yè)怎么在聯(lián)通申請(qǐng)400電話 泰州泰興400電話 怎么申請(qǐng)

本文為大家分享了JSP用過濾器解決request中文亂碼問題,具體內(nèi)容如下
(1)客戶端的數(shù)據(jù)一般是通過HTTP  GET/POST方式提交給服務(wù)器,在服務(wù)器端用request.getParameter()
讀取參數(shù)時(shí),很容易出現(xiàn)中文亂碼現(xiàn)象。
(2)用過濾器解決request中文亂碼問題。
(3)代碼如下:

package my; 
 
import java.io.*; 
import javax.servlet.*; 
import javax.servlet.http.*; 
 
public class ChineseFilter implements Filter { //定義了一個(gè)過濾器 實(shí)現(xiàn)Filter接口 
 
 private FilterConfig config = null; 
 
 public void init(FilterConfig config) throws ServletException { 
 this.config = config; 
 } 
 
 public void destroy() { 
 config = null; 
 } 
 
 public void doFilter(ServletRequest request, ServletResponse response, 
      FilterChain chain) throws IOException, ServletException 
 { 
  request.setCharacterEncoding("GB2312"); 
  chain.doFilter(request, response); //把過濾后的request對(duì)象轉(zhuǎn)發(fā)給下一個(gè)過濾器處理 
 } 
} 

(4)部署過濾器。編輯WEB-INF\web.xml文件,添加以下內(nèi)容:

filter> 
 filter-name>cf/filter-name> 
 filter-class>my.ChineseFilter/filter-class> 
/filter> 
filter-mapping> 
 filter-name>cf/filter-name> 
 url-pattern>/*/url-pattern> 
 dispatcher>REQUEST/dispatcher> 
 dispatcher>FORWARD/dispatcher> 
 dispatcher>INCLUDE/dispatcher> 
/filter-mapping> 

這里的dispatcher>/dispatcher>主要是配合RequestDispatcher使用。

  • 1.取值為REQUEST時(shí) 表示有請(qǐng)求直接來自客戶端時(shí),過濾器才能被激活,如果請(qǐng)求是來自RequestDispatcher.forward時(shí)不激活;
  • 2.取值為FORWARD時(shí) 表示如果請(qǐng)求是來自RequestDispatcher.forward時(shí)此過濾器才激活;
  • 3.取值為INCLUDE時(shí) 表示如果請(qǐng)求是來自RequestDispatcher.include時(shí)此過濾器才激活;
  • 4.取值為ERROR時(shí) 表示如果請(qǐng)求是來自RequestDispatcher使用“錯(cuò)誤信息頁”時(shí)此過濾器才激活;
  • 5.默認(rèn)為REQUEST。

(5)創(chuàng)建一個(gè)jsp頁面檢驗(yàn)

%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %> 
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
html xmlns="http://www.w3.org/1999/xhtml"> 
head> 
meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
title>無標(biāo)題文檔/title> 
/head> 
 
body> 
% 
  String s=request.getParameter("data"); 
  out.print(s); 
%> 
/body> 
/html> 

以上就是關(guān)于JSP解決request中文亂碼問題的方法,希望對(duì)大家的學(xué)習(xí)有所幫助。

您可能感興趣的文章:
  • java request.getParameter中文亂碼解決方法
  • 解決python3 requests headers參數(shù)不能有中文的問題
  • 解決python3中的requests解析中文頁面出現(xiàn)亂碼問題
  • JSP用過濾器解決request getParameter中文亂碼問題
  • 通過過濾器(Filter)解決JSP的Post和Request中文亂碼問題
  • Request.UrlReferrer中文亂碼解決方法
  • ASP.NET中Request.Form中文亂碼的解決方法
  • JSP XMLHttpRequest動(dòng)態(tài)無刷新及其中文亂碼處理
  • Python request中文亂碼問題解決方案

標(biāo)簽:白銀 銅川 自貢 開封 吉林 山南 臨汾 烏蘭察布

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《JSP利用過濾器解決request中文亂碼問題》,本文關(guān)鍵詞  JSP,利用,過濾器,解決,request,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《JSP利用過濾器解決request中文亂碼問題》相關(guān)的同類信息!
  • 本頁收集關(guān)于JSP利用過濾器解決request中文亂碼問題的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章