url中传中文

function gotoPage(code,name){//name为中文
window.location.href="upload.jsp?bigCategoryCode="+code+"&bigCategoryName="+encodeURI(encodeURI(name));

}

 

目标jsp页面中做处理:

String bigCategoryName = request
.getParameter("bigCategoryName");
bigCategoryName=java.net.URLDecoder.decode(bigCategoryName,"utf-8");

posted on 2017-02-28 16:12  决心觉新  阅读(184)  评论(0编辑  收藏  举报