码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2015-05-06 10:53:39      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

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

转码代码:

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

 

解码代码:

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

 

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

标签:

原文地址:http://www.cnblogs.com/wangshuo1/p/4481106.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!