这里介绍jsp实现重定向的方法
1.可以使用:
复制代码 代码示例:
response.sendRedirect("http://www.jb200.com/");
2.手工修改HTTP header的Location属性:
复制代码 代码示例:
<%
response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY);
String newLocn = "/newpath/index.html";
response.setHeader("Location",newLocn);
%>
3.使用forward:
复制代码 代码示例:
<jsp:forward page="/newpage.jsp" />
请注意:只能在任何输出还没有发送到客户端之前使用这种方式。
复制代码 代码示例:
while (i <= sStr.length()-1)
{
if (sStr.charAt(i) == 'n')
{
sTmp = sTmp.concat("<br>");
}
else
{
sTmp = sTmp.concat(sStr.substring(i,i+1));
}
i++;
}
return sTmp;
}