JSP内置对象-Response

1 JSP response内置对象

在JSP中,response是HttpServletResponse类型的内置对象。Web容器为每个JSP请求创建HttpServletResponse的实例。

它可用于添加或处理响应,例如将响应重定向到另一个资源,发送错误等。

让我们看一下response内置对象的示例,其中将响应重定向到baidu。

2 response内置对象示例

2.1 编写index.jsp

<%@ page language="java" contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"%>
<html>
<html>
<head>
    <meta charset="utf-8">
    <title>一点教程网-JSP response内置对象</title>
</head>
<body>
<form action="welcome.jsp">
    <input type="text" name="uname">
    <input type="submit" value="提交"><br/>
</form>
</body>
</html>

2.2 编写welcome.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <meta charset="UTF-8">
    <title>一点教程网-JSP response内置对象</title>
</head>
<body>

<%
    response.sendRedirect("http://www.baidu.com");
%>

</body>
</html>

2.3 运行测试

 

热门文章

优秀文章