解决js向jsp传中文出现乱码的问题(对弹出窗体也有效)

晕啊。。弄了一个晚上。。。

在js中,已经得到了正确的中文参数,在传到jsp中,却死活传不过去了。。在网上找方法,我怀疑他们到底试过没有,没试过就写上了,无语。。


经过亲身测试,将解决方案提上来:


在js端:

要用到encodeURI,但要注意,这个不是给参数用的,是给整个URL用的,为了看着方便,先把URL提出来。

var url = 'test.jsp?PlateColor='+ PlateColor+'&PlateInfo='+ PlateInfo;

window.open (encodeURI(url),……)


在jsp端:

<%
String PlateColor = request.getParameter("PlateColor");

/////////////////////////注意,千万不要以为此处写utf-8与gb2312是一样的,只有写utf-8,才能正常展示出来,具体为什么我也不知道。。知道的话告诉我一声啊。
PlateColor = new String(request.getParameter("PlateColor").getBytes("ISO-8859-1"),"utf-8");
String PlateInfo = request.getParameter("PlateInfo");
%>
<title>test</title>
</head>
<body>
<big><big><big><big><%=PlateColor%></big></big></big></big><br><br>
<big><big><big><big><%=PlateInfo%></big></big></big></big>
</body>
</html>

你可能感兴趣的:(jsp)