jsp页面间传中文参数示例(页面传参数编码)

   在url地址栏使用中文传参数可能会是乱码了,下面我们来看看正确的jsp中页面间传中文参数转码的方法.

转码代码:

String tcontent = "测试";
a.href="./showCont.jsp?tcontent="+encodeURI(encodeURI(tcontent));

 

解码代码:

java.net.URLDecoder.decode((String)request.getParameter("tcontent"), "UTF-8");

 

你可能感兴趣的:(jsp)