在url地址栏使用中文传参数可能会是乱码了,下面我们来看看正确的jsp中页面间传中文参数转码的方法.
转码代码:
String tcontent = "测试";a.href="./showCont.jsp?tcontent="+encodeURI(encodeURI(tcontent));
解码代码:
java.net.URLDecoder.decode((String)request.getParameter("tcontent"), "UTF-8");
时间: 2024-10-09 23:06:28