java中response对象用法实例分析
作者:官林辉 时间:2023-08-23 18:51:04
本文实例讲述了java中response对象用法。分享给大家供大家参考,具体如下:
<jsp:forward>动作元素用于运行时在服务器端结束当前页面的执行,并从当前页面转向指定页面。
使用response对象的setHeader()方法可以设置页面的自动刷新时间间隔。实现每隔60秒重新加载本页面的语句为:
response.setHeader("refresh",60);
而实现3秒后浏览器加载新页面https://www.jb51.net的语句为:
response.setHeader("refresh","3;URL=https://www.jb51.net");
response的方法:void sendRedirect(String url),将页面重定向到指定的URL地址上。
实例:使用response实现用户登录功能
login.html为登录表单页面
login.jsp为信息处理页面,用来验证用户登录是否成功。
success.jsp为登录成功后的跳转页面。
login.html的源代码如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>登录功能实例</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
</head>
<body>
<center>
<h1>登录界面</h1>
<form action="login.jsp" method="post">
姓名:<input type="text" name="name"><br>
密码:<input type="password" name="pwd"><br>
<input type="submit" name="submit" value="登录">
<input type="reset" name="reset" value="重置">
</form>
</center>
</body>
</html>
login.jsp的源代码如下:
<%@ page language="java" import="java.util.*" contentType="text/html;charset=UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>登录功能实例</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<center>
<h1>登录功能实例</h1>
<%
request.setCharacterEncoding("UTF-8");
String name = request.getParameter("name");
String pwd = request.getParameter("pwd");
if(name != null && pwd != null && name.equals("guanlin") && pwd.equals("123"))
{
//response.sendRedirect("success.jsp");
%>
<jsp:forward page="success.jsp"></jsp:forward>
<%}else
{
out.println("<font color='red'>用户名或密码错误,5秒钟回到登录页面,如果不想等待请点<a href='response/login.html'>返回登录</a></font>");
response.setHeader("refresh","5;url = login.html");
}
%>
</center>
</body>
</html>
success.jsp的源代码如下:
<%@ page language="java" import="java.util.*" contentType="text/html;charset=UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>登录功能实例</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<center>
<h1 style="green">登录成功!</h1>
<%
request.setCharacterEncoding("UTF-8");
String name = request.getParameter("name");
String pwd = request.getParameter("pwd");
%>
登录的用户名为:<%=name %><br>
登录的密码为:<%=pwd %>
</center>
</body>
</html>
希望本文所述对大家Java程序设计有所帮助。
标签:java,response
0
投稿
猜你喜欢
Android中EditText和AutoCompleteTextView设置文字选中颜色方法
2022-12-05 04:45:30
Android高级组件AutoCompleteTextView自动完成文本框使用详解
2022-04-19 07:49:28
浅谈JDK9的特性之JVM的xlog
2022-07-20 12:00:45
java高并发的线程中断的几种方式详解
2022-08-25 01:35:09
Java struts2请求源码分析案例详解
2021-08-06 02:03:24
Java语言实现简单FTP软件 FTP软件效果图预览之上传功能(3)
2022-03-28 10:16:21
关于C++一些特性的探究
2022-04-10 07:17:54
c#字符串编码问题的处理解决
2021-07-06 13:47:49
Java JVM中线程状态详解
2023-01-24 16:06:19
史上最全的java随机数生成算法分享
2023-10-17 15:22:33
java 定时同步数据的任务优化
2021-09-18 19:48:22
C#使用opencv截取旋转矩形区域图像的实现示例
2023-11-12 22:20:44
c#执行外部命令示例分享
2023-10-18 15:30:20
c#中LINQ的基本用法(三)
2022-11-29 11:06:31
Android实现授权访问网页的方法
2022-05-13 15:39:57
c#继承与多态使用示例
2021-11-24 16:48:33
C++ 让函数返回数组的方法
2022-12-04 06:49:33
Java应用程序开发学习之static关键字应用
2021-12-20 13:23:41
详解C#中HashTable的用法
2023-07-17 04:42:07
Android AMS启动详解
2023-08-26 16:13:52