在前面的文章里面,我們討論了在tomcat下的jsp和servlet的字符編碼問題!
知道當沒有指定request的編碼的時候,從客戶端得到的數據是iso-8859-1編碼的(request.getparameter()得到傳遞的參數值);
但是我們怎么來改變request的編碼呢?
方法有很多種!
比如:在getrequestdispatcher("/jsp/jsptoserv/hello.jsp").forward(request, response);之前修改
request的編碼,那么在jsp/jsptoserv/hello.jsp中得到的參數值就是制定的編碼的字符。
本文我們使用filter來修改request的編碼!
1)首先編寫filter類:
package myfilter;
import java.io.ioexception;
import javax.servlet.*;
public class changecharsetfilter implements filter {
protected string encoding = null;/////要制定的編碼,在web.xml中配置
protected filterconfig filterconfig = null;
public void destroy() {
this.encoding = null;
this.filterconfig = null;
}
public void dofilter(servletrequest request, servletresponse response, filterchain chain)
throws ioexception, servletexception {
if (request.getcharacterencoding() == null){
string encoding = getencoding();////得到指定的編碼名字
if (encoding != null)
request.setcharacterencoding(encoding);////設置request的編碼
}
chain.dofilter(request, response);///有機會執行下一個filter
}
public void init(filterconfig filterconfig) throws servletexception {
this.filterconfig = filterconfig;
this.encoding = filterconfig.getinitparameter("encoding");///得到在web.xml中配置的編碼
}
protected string getencoding() {
return (this.encoding);///得到指定的編碼
}
}
2。編輯web.xml文件
<?xml version="1.0" encoding="iso-8859-1"?>
<!doctype web-app
public "-//sun microsystems, inc.//dtd web application 2.3//en"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<filter>
<filter-name>setcharacterencoding</filter-name>
<filter-class>myfilter.changecharsetfilter </filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>gb2312</param-value>//////指定編碼為gb2312
</init-param>
</filter>
<filter-mapping>
<filter-name>setcharacterencoding</filter-name>
<url-pattern>/*</url-pattern>////////對于所有的request改變其編碼
</filter-mapping>
</web-app>
///
3。
寫一個a.jsp
<%@ page contenttype="text/html; charset=gb2312" %>
<html>
<head></head>
<body>
<%
string name=request.getparameter("name");///本來這里得到字符是iso-8859-1編碼的,不能直接
在console中輸出的,但是現在改變了request的編碼方式,此時的name的編碼是gb2312,所以能正確在console中顯示的。
system.out.println(name);
%>
<form action="a.jsp" method="post">
<input type="text" name="name">
<input type="submit">
</form>
<%=name%>
</body>
</html>
完!
關于中文處理的問題就寫這些了!
新聞熱點
疑難解答