标签:
在url地址栏使用中文传参数可能会是乱码了,下面我们来看看正确的jsp中页面间传中文参数转码的方法.
转码代码:
String tcontent = "测试";
a.href="./showCont.jsp?tcontent="+encodeURI(encodeURI(tcontent));
解码代码:
java.net.URLDecoder.decode((String)request.getParameter("tcontent"), "UTF-8");
标签:
原文地址:http://www.cnblogs.com/wangshuo1/p/4481106.html