JSP 頁面重定向
jsp 頁面重定向
當(dāng)需要將文檔移動到一個新的位置時,就需要使用jsp重定向了。
最簡單的重定向方式就是使用response對象的sendredirect()方法。這個方法的簽名如下:
public void response.sendredirect(string location) throws ioexception
這個方法將狀態(tài)碼和新的頁面位置作為響應(yīng)發(fā)回給瀏覽器。您也可以使用setstatus()和setheader()方法來得到同樣的效果:
.... string site = "http://www.slktour.com" ; 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.slktour.com"); response.setstatus(response.sc_moved_temporarily); response.setheader("location", site); %> </body> </html>
將以上代碼保存在pageredirecting.jsp文件中,然后訪問http://localhost:8080/pageredirect.jsp,它將會把您帶至http://www.slktour.com/。