1.使用response对象提供的sendRedirect()方法可以将网页重定向到另一个页面。重定向操作支持将地址重定向到不同的主机上,这一点与转发是不同的。在客户端浏览器上将会得到跳转地址,并重新发送请求链接。用户可以从浏览器的地址栏中看到跳转后的地址。进行重定向操作后,request中的属性全部失效,并且开始一个新的request对象。
sendRedirect()方法的语法格式如下:
response.sendRedirect(String psth);
例子:新建一个index.jsp页面在body中添加Java重定向语句
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<%@ page language="java" contentType="text/html;charset="UTF-8" pageEncoding="UTF-8"%>
< html >
< head >
< meta http-equiv = "Content-Type" content = "text/html;charset=UTF-8" >
< title >首页</ title >
</ head >
< body >
<%response.sendRedirect("login.jsp");%>
</ body >
</ html >
|
新建一个login.jsp 布局登录界面
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<%@ page language="java" contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"%>
< html >
< head >
< meta http-equiv = "Content-Type" content = "text/html;charset=UTF-8" >
< title >用户登录页面</ title >
</ head >
< body >
< form name = "form1" method = "post" action = "" >
用户名:< input name = "name" type = "text" id = "name" style = "width:120px" >< br >
密 码:< input name = "pwd" type = "password" id = "pwd" style = "width:120px" >< br >
< input type = "submit" name = "Submit" value = "提交" >
</ form >
</ body >
</ html >
|
以上这篇response对象的使用(实例讲解)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:http://www.cnblogs.com/lihuibin/archive/2017/08/31/7460153.html