黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

JSP 頁(yè)面重定向

jsp 頁(yè)面重定向

當(dāng)需要將文檔移動(dòng)到一個(gè)新的位置時(shí),就需要使用jsp重定向了。

最簡(jiǎn)單的重定向方式就是使用response對(duì)象的sendredirect()方法。這個(gè)方法的簽名如下:

public void response.sendredirect(string location)
throws ioexception 

這個(gè)方法將狀態(tài)碼和新的頁(yè)面位置作為響應(yīng)發(fā)回給瀏覽器。您也可以使用setstatus()和setheader()方法來(lái)得到同樣的效果:

....
string site = "http://" ;
response.setstatus(response.sc_moved_temporarily);
response.setheader("location", site); 
....

實(shí)例演示

這個(gè)例子表明了jsp如何進(jìn)行頁(yè)面重定向:

<%@ page language="java" contenttype="text/html; charset=utf-8"
    pageencoding="utf-8"%>
<%@ page import="java.io.*,java.util.*" %>
<html>
<html>
<head>
<title>頁(yè)面重定向</title>
</head>
<body>

<h1>頁(yè)面重定向</h1>

<%
   // 重定向到新地址
   string site = new string("http://");
   response.setstatus(response.sc_moved_temporarily);
   response.setheader("location", site); 
%>

</body>
</html>

將以上代碼保存在pageredirecting.jsp文件中,然后訪問(wèn)http://localhost:8080/pageredirect.jsp,它將會(huì)把您帶至http:///

相關(guān)文章