[求助]include 命令传参中文问题
[求助]include 命令传参中文问题
我用include 命令传参,出现乱码问题。请各位兄弟帮忙解决。如何才能支持中文传参啊!
<%@page contentType="text/html;charset=gb2312"%>
<html>
<body>
<% String ok="你好";%>
<h1>
<jsp:include page="2.jsp">
<jsp:param name="b" value="<%=ok%>"/>
</jsp:include>
</h1>
</body>
</html>
2.jsp在这里
<%@ page contentType="text/html;charset=gb2312"%>
<%=request.getParameter("b")%>
搜索更多相关主题的帖子:
参中文 include 命令 page
----------------解决方案--------------------------------------------------------
试过了,都不行,可能不支持或者还有我们想不到的吧~~
----------------解决方案--------------------------------------------------------
得到的时候把String转一下
String s=(String)request.getParameter("b");
s=new String(s.getBytes("iso-8859-1"),"gb2312");
out.println(s);
----------------解决方案--------------------------------------------------------