JSP 頁面重新導向


當需要將文件移到新的位置時,就需要使用JSP重定向了。

最簡單的重定向方式就是使用response物件的sendRedirect()方法。這個方法的簽章如下:

public void response.sendRedirect(String location)
throws IOException

這個方法將狀態碼和新的頁面位置作為回應傳回給瀏覽器。您也可以使用setStatus()和setHeader()方法來得到相同的效果:

....
String site = "http://www.php.cn" ;
response.setStatus(response.SC_MOVED_TEMPORARILY);
response.setHeader("Location", site); 
....

實例示範

這個範例顯示了JSP如何進行頁面重新導向:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ page import="java.io.*,java.util.*" %>
<html>
<html>
<head>
<title>页面重定向</title>
</head>
<body>

<h1>页面重定向</h1>

<%
   // 重定向到新地址
   String site = new String("http://www.php.cn");
   response.setStatus(response.SC_MOVED_TEMPORARILY);
   response.setHeader("Location", site); 
%>

</body>
</html>

將以上程式碼保存在PageRedirecting.jsp檔案中,然後造訪http://localhost:8080/PageRedirect.jsp,它將帶您到http://www.php.cc/