|
<%
request.setCharacterEncoding('UTF-8") ;//或者指定的编码(GBK或其他)
%>
如下面所示:
复制代码 代码如下:
jsp-include.jsp
<%@ page language="Java" contentType="text/html;charset=UTF-8" %>
<html>
<head><title>jsp include测试页</title></head>
<body>
<%
request.setCharacterEncoding("UTF-8") ;
%>
<h3>jsp include 指令测试</h3>
<jsp:include page="forward-result.jsp">
<jsp:param name="age" value="32" />
<jsp:param name="username" value="张三" />
</jsp:include>
</body>
</html>
forward-result.jsp
<%@ page language="Java" contentType="text/html;charset=UTF-8" %>
<html>
<head><title>forward的结果页</title></head>
<body>
年龄:<%=request.getParameter("age")%><br />
姓名:<%=request.getParameter("username") +"--11"%>
</body>
</html>
jsp技术:基于jsp:included的使用与jsp:param乱码的解决方法,转载需保留来源!
郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。