response 对象,response对象作用

response 对象,response对象作用,response对象的使用(实例讲解)

下面小编就给大家带来一个response对象的用法(举例说明)。我觉得边肖挺好的。我现在就分享给你,给你一个参考。来和边肖一起看看吧。

1.使用response对象提供的sendRedirect()方法将网页重定向到另一个页面。重定向操作支持将地址重定向到不同的主机,与转发不同。客户端浏览器将获得跳转地址并重新发送请求链接。用户可以从浏览器的地址栏看到跳转后的地址。重定向操作后,请求中的所有属性都无效,并启动一个新的请求对象。

sendRedirect()方法的语法格式如下:

response.sendRedirect(字符串psth);

示例:创建一个新的index.jsp页面,并在正文中添加Java重定向语句。

% @ page language= Java content type= text/html;charset= UTF-8 page encoding= UTF-8 %

超文本标记语言

meta http-equiv= Content-Type Content= text/html;charset=UTF-8

主页/标题

/头

身体

% response . send redirect( log in . JSP );%

/body

/html

为login布局创建新的登录界面。

% @ page language= Java content type= text/html;charset=UTF-8 page encoding= UTF-8 %

超文本标记语言

meta http-equiv= Content-Type Content= text/html;charset=UTF-8

标题用户登录页面/标题

/头

身体

表单名称=form1 方法=post 操作=

用户名:输入name= name type= text id= name style= width:120 px br

code:input name= pwd type= password id= pwd style= width:120 px br

类型=提交名称=提交值=提交

/表单

/body

/html

上述响应对象的使用(示例解释)是边肖共享的所有内容。希望给大家一个参考,支持我们。

response 对象,response对象作用