下面這段代碼輸出的是url為
http://localhost:8080/news/HelloServlet?hello=%e5%a4%a7%e5%ae%b6%e5%a5%bd&test=%e5%a4%a7%e5%ae%b6%e5%a5%bd
Html代碼
- <body>
- <c:urlvalue="http://localhost:8080/news/HelloServlet"var="url">
- <c:paramname="hello"value="${hello}"/>
- <c:paramname="test"value="${hello}"/>
- </c:url>
- <ahref="<c:out
value="${url}"/>">${hello}</a>
- </body>
<body> <c:url value="http://localhost:8080/news/HelloServlet" var="url"> <c:param name="hello" value="${hello}" /> <c:param name="test" value="${hello}" /> </c:url> <a href="<c:out value="${url}" />">${hello}</a></body>
其中<c:url value="http://localhost:8080/news/HelloServlet" var="url">
中的value為提交的url,var表示為url
<c:param name="hello" value="${hello}" />中的name為在下邊引用的名字,如${hello},value為靜態值,即顯示的是${hello}中的hello,但會被轉化為%百分比符號形式,避免url提交漢字出現亂碼
這個設定還需要設定tomcat/conf/server.xml中的URLEncoder="urf-8"
除了用上面的方法消除亂碼,也可用下面的方法: pageActionSearch.action?resourcesName=<%=java.net.URLEncoder.encode("模具","UTF-8")%>
黑色頭髮:http://heisetoufa.iteye.com/