JSP中四种属性保存范围(2)
1.session
- <%@ page language="java" contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>Insert title here</title>
- </head>
- <body>
- <%
- //获取session ID Manager 可以将session保存在本地上
- String id = session.getId();
- %>
- <h1><%=id %></h1>
- </body>
- </html>
- <%@ page language="java" contentType="text/html"
- pageEncoding="GBK"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <title>Insert title here</title>
- </head>
- <body>
- <%
- if(session.isNew()){
- %>
- <h1>欢迎新用户</h1>
- <%
- }else{
- %>
- <h1>老用户</h1>
- <%
- }
- %>
- </body>
- </html>
- <%@ page language="java" contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>Insert title here</title>
- </head>
- <body>
- <%
- long start = session.getCreationTime(); //创建此会话的时间
- long end = session.getLastAccessedTime();//客户端上一次发送与此会话关联的请求的时间,最后一次操作此会话时间
- long time = (end-start)/1000; // 毫秒转换为秒
- %>
- <h1>您已经在此网页停留了<%=time %>秒</h1>
- </body>
- </html>
2.request
- <%@ page language="java" contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>Insert title here</title>
- </head>
- <body>
- <%
- Cookie c1 = new Cookie("hw","hello world");
- Cookie c2 = new Cookie("hi","nice to meet you");
- c1.setMaxAge(300);//设置最大生存时间300秒
- c2.setMaxAge(30); //设置最大生存时间30秒
- response.addCookie(c1);
- response.addCookie(c2);
- %>
- </body>
- </html>
- <%@ page language="java" contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>Insert title here</title>
- </head>
- <body>
- <%
- Cookie [] c = request.getCookies();
- if(c!=null){
- for(int i=0;i<c.length;i++){
- %>
- <h1>name:<%=c[i].getName() %>--value:<%=c[i].getValue() %></h1>
- <%
- }
- }
- %>
- </body>
- </html>
3.定时刷新
- <%@ page language="java" contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>Insert title here</title>
- </head>
- <body>
- <%!
- int count = 0;
- %>
- <%
- response.setHeader("refresh","1"); //每隔1秒刷新一次
- %>
- <h3>已经刷新了<%=count++ %>次</h3>
- </body>
- </html>
4.定时跳转页面一
- <%@ page language="java" contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>Insert title here</title>
- </head>
- <body>
- <h1>访问错误,5秒后跳转至首页,如果没有跳转,请点击<a href=hello.jsp>这里</a></h1>
- <%!
- int count = 0;
- %>
- <%
- response.setHeader("refresh","5; url=hello.jsp");
- %>
- </body>
- </html>
4.定时跳转页面二
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="refresh" content="5;url=hello.jsp" charset="utf-8">
- <title>Insert title here</title>
- </head>
- <body>
- <h1>访问错误,5秒后跳转至首页,如果没有跳转,请点击<a href=hello.jsp>这里</a></h1>
- </body>
- </html>
5.重定向
- <%@ page language="java" contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>Insert title here</title>
- </head>
- <body>
- <%
- response.sendRedirect("hello.jsp");
- %>
- </body>
- </html>
6.addcookie
- <%@ page language="java" contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>Insert title here</title>
- </head>
- <body>
- <%
- Cookie c1 = new Cookie("hw","hello world");
- Cookie c2 = new Cookie("hi","nice to meet you");
- c1.setMaxAge(300);//设置最大生存时间300秒
- c2.setMaxAge(30); //设置最大生存时间30秒
- response.addCookie(c1);
- response.addCookie(c2);
- %>
- </body>
- </html>
- <%@ page language="java" contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>Insert title here</title>
- </head>
- <body>
- <%
- Cookie [] c = request.getCookies();
- if(c!=null){
- for(int i=0;i<c.length;i++){
- %>
- <h1>name:<%=c[i].getName() %>--value:<%=c[i].getValue() %></h1>
- <%
- }
- }
- %>
- </body>
- </html>
7.练习
- <%@ page language="java" contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>Insert title here</title>
- </head>
- <body>
- <form action="login.jsp" method="post">
- 用户名:<input type="text" name="uname" ><br/>
- 密 码:<input type="password" name="upass" ><br/>
- <input type="submit" value="登陆">
- <input type="reset" value="清空">
- </form>
- <%
- //用户名scott,密码orcl
- String name=request.getParameter("uname");
- String password=request.getParameter("upass");
- if(!(name==null||"".equals(name.trim())||password==null||"".equals(password.trim()))){
- if("scott".equals(name)&&"orcl".equals(password)){
- response.setHeader("refresh","2;url=welcome.jsp");//2秒后跳转welcome页面
- session.setAttribute("userName",name); //传值
- %>
- <h1>登陆成功,两秒后跳转至欢迎页 </h1>
- <h1>如果没有跳转,请点击<a href="welcome.jsp">这里</a></h1>
- <%
- }else{
- %>
- <h3>用户名或密码错误,请重新登陆...</h3>
- <%
- response.setHeader("refresh","2;url=login.jsp");
- }
- }else{
- }
- %>
- </body>
- </html>
- <%@ page language="java" contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>Insert title here</title>
- </head>
- <body>
- <%
- session.invalidate();
- response.setHeader("refresh","2;login.jsp");
- %>
- <h2>注销成功,两秒后跳转至首页</h2>
- <h1>如果没有跳转,请点击<a href="login.jsp">这里</a></h1>
- </body>
- </html>
- <%@ page language="java" contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>Insert title here</title>
- </head>
- <body>
- <%
- if(session.getAttribute("userName")!=null){
- %>
- <h2>欢迎<%=session.getAttribute("userName") %>登陆本系统</h2>
- <h1>注销请点击<a href="loginout.jsp">注销</a></h1>
- <%
- }else{
- %>
- <h1>请先<a href="login.jsp">登录</a></h1>
- <%
- }
- %>
- </body>
- </html>
JSP中四种属性保存范围(2)的更多相关文章
- JSP中四种属性保存范围(1)
一.四种属性范围 在JSP中提供了四种属性保存范围 page:在一个页面内保存属性,跳转之后无效request:在一次服务请求范围内,服务器跳转后依然有效session:-在一次会话范围内,无论何种跳 ...
- jsp中四种传递参数的方法
jsp中四种传递参数的方法如下: 1.form表单 2.request.setAttribute();和request.getAttribute(); 3.超链接:<a herf="i ...
- css样式表中四种属性选择器
学习此连接的总结http://developer.51cto.com/art/201009/226158.htmcss样式表中四种属性选择器1> 简易属性 tag[class]{ font-we ...
- (转)JSP中四种传递参数的方法:
1.form表单 2.request.setAttribute();和request.getAttribute(); 3.超链接:<a herf="index.jsp"?a= ...
- JSP中四种传递参数中文乱码问题
查看来源:http://blog.csdn.net/hackerain/article/details/6776083
- JSP九大内置对象和四种属性范围解读
林炳文Evankaka原创作品.转载请注明出处http://blog.csdn.net/evankaka 摘要:本文首先主要解说了JSP中四种属性范围的概念.用法与实例. 然后在这个基础之上又引入了九 ...
- Jsp学习总结(1)——JSP九大内置对象和四种属性范围解读
一.四种属性范围 1.1.在JSP中提供了四种属性保存范围 page:在一个页面内保存属性,跳转之后无效 request:在一次服务请求范围内,服务器跳转后依然有效 session:-在一次会话范围内 ...
- jsp四种属性范围
在JSP提供了四种属性的保存范围.所谓的属性保存范围,指的就是一个设置的对象,可以在多个页面中保存并可以继续使用.它们分别是:page.request.session.appliction. 1.pa ...
- JavaScript中四种不同的属性检测方式比较
JavaScript中四种不同的属性检测方式比较 1. 用in方法 var o = {x:1}; "x" in o; //true "y" in o; //fa ...
随机推荐
- BZOJ 1179 (Tarjan缩点+DP)
题面 传送门 分析 由于一个点可以经过多次,显然每个环都会被走一遍. 考虑缩点,将每个强连通分量缩成一个点,点权为联通分量上的所有点之和 缩点后的图是一个有向无环图(DAG) 可拓扑排序,按照拓扑序进 ...
- 事件对象e的实现原理
转自:https://segmentfault.com/q/1010000007337410?_ea=1313467 事件对象传递原理 1.前置知识回顾 在讲传递原理前,我们先看看普通函数是如何传递参 ...
- 用jquery制作的简单轮播图
我也是进入H5前端的小菜鸟一枚,最近才进入jquery的学习,所以打算对自己的学习进行记录. 今天分享的是一个简单的轮播图,这个轮播图的特效很简单,能够进行图片的轮播以及点击相应图片,图片能够跳转到相 ...
- maven整合S2SH
1.pom.xml <?xml version="1.0"?> <project xsi:schemaLocation="http://maven.ap ...
- 1. AtomicInteger 、Unsafe 及 CAS方法的整理
本文摘自: https://blog.csdn.net/fanrenxiang/article/details/80623884 http://ifeve.com/sun-misc-unsafe/ h ...
- Tunnel connection failed: 407 Proxy Authentication Required
报错信息 : Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connecti ...
- HttpClientUtil工具类封装
package com.jd.ng.shiro.utils; import org.apache.http.HttpEntity; import org.apache.http.HttpStatus; ...
- windows 安装 mysql 5.6
从官方网站下载安装包:mysql-5.6.33-winx64.zip,解压到d:\java,然后将解压后的bin目录加入系统环境变量Path中,进入mysql根目录,编辑my-default.ini, ...
- 【leetcode】870. Advantage Shuffle
题目如下: 解题思路:几千年前,一个古人曾经解过这个题目,他的名字叫做田忌,后人称他的解题思想叫做“田忌赛马”.言归正传,本题就是一个田忌赛马的问题,先将A与B进行排序,然后判断A[0]与B[0]的大 ...
- 百度编辑器UEditor使用总结
官网下载地址:http://ueditor.baidu.com/website/download.html 我下载的是jsp版本,下载后将整个目录复制到项目的js包下,然后将jsp包下的lib下的ja ...