request 接收中文參數(shù)時要設(shè)置編碼格式為utf-8:
<%request.setCharacterEncoding("UTF-8");%>
<%=request.getParameter("username")%>
URL 在頁面中直接傳遞參數(shù)中文參數(shù)會造成亂碼的問題鼻忠,并且無法解決
href="request.jsp?username=李四"
除非修改 Tomcat 配置文件:
在Tomcat 安裝目錄下的 conf/server.xml? ,添加 URIEncoding="utf-8"
<Connectorport="8080"protocol="HTTP/1.1"connectionTimeout="20000" redirectPort="8443" URIEncoding="utf-8"/>
(不能直接在Eclipse 項目列表里面修改 Servers下的 server.xml文件膨俐,修改無效)