您的位置:首页 > 理论基础 > 计算机网络

java WEB学习笔记32:HttpSession 接口常用方法 及 HttpServletRequest接口中的Session方法 Demo

2016-05-31 21:37 846 查看

本博客为原创:综合 尚硅谷(http://www.atguigu.com)的系统教程(深表感谢)和 网络上的现有资源(博客,文档,图书等),资源的出处我会标明

本博客的目的:①总结自己的学习过程,相当于学习笔记 ②将自己的经验分享给大家,相互学习,互相交流,不可商用

内容难免出现问题,欢迎指正,交流,探讨,可以留言,也可以通过以下方式联系。

本人互联网技术爱好者,互联网技术发烧友

微博:伊直都在0221

QQ:951226918

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

1.HttpSession 常用方法

getId()

getCreationTime()

getLastAccessedTime()

setMaxInactiveInterval()

getMaxInactiveInterval()

isNew() 如果客户端请求消息中返回了一个与Servlet程序当前获得的HttpSession对象的会话标识号相同的会话标识号,则认为这个HttpSession对象不是新建的。

invalidate()

getServletContext()

setAttribute()

getAttribute()

removeAttribute()

getAttributeNames()

2.HttpServletRequest接口中的Session方法

getSession()

   public HttpSession getSession(boolean create)

   public HttpSession getSession()

isRequestedSessionIdValid()

isRequestedSessionIdFromCookie()

isRequestedSessionIdFromURL()

3. 综合Dome

总结理解 session 的方法

代码:login.jsp hello.jsp, logoff.jsp

 

 1)login.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>session login JSP</title>
</head>
<body>

SessionId :<%= session.getId() %>
<br><br>

IsNew:<%= session.isNew() %>
<br><br>

MaxInactiveInterval:<%= session.getMaxInactiveInterval() %>
<br><br>

CreateTime:<%= session.getCreationTime() %>
<br><br>

LastAccessTime:<%= session.getLastAccessedTime() %>
<br><br>
<%
Object username = session.getAttribute("username");
if(username == null){
username = "";
}
%>

<form action="./hello.jsp" method="post">

username:<input type="text" name="username" value="<%= username %>"/>
<input type="submit" value="submit"/>
</form>

</body>
</html>


  效果图:

    


经过注销后的 login界面

    


  2) hello.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>session login JSP</title>
</head>
<body>

SessionId :<%= session.getId() %>
<br><br>

IsNew:<%= session.isNew() %>
<br><br>

MaxInactiveInterval:<%= session.getMaxInactiveInterval() %>
<br><br>

CreateTime:<%= session.getCreationTime() %>
<br><br>

LastAccessTime:<%= session.getLastAccessedTime() %>
<br><br>

hello : <%= request.getParameter("username") %>
<%
session.setAttribute("username", request.getParameter("username"));
%>
<br><br>
<a href="login.jsp">重新登录</a>
    
<a href="logoff.jsp">注销</a>
</body>
</html>


效果图:

    


logoff.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>logoff JSP</title>
</head>
<body>

SessionId :<%= session.getId() %>
<br><br>

IsNew:<%= session.isNew() %>
<br><br>

MaxInactiveInterval:<%= session.getMaxInactiveInterval() %>
<br><br>

CreateTime:<%= session.getCreationTime() %>
<br><br>

LastAccessTime:<%= session.getLastAccessedTime() %>
<br><br>

Bye : <%= session.getAttribute("username") %>

<br><br>

<a href="login.jsp">重新登录</a>
    
<%
session.invalidate();
%>

</body>
</html>


效果图:

    
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: