一种登入和登出的实现 2



session.jsp打印cookie/session对象值 进行cookie到session的定向拷贝和注销功能调用,主要用来测试。
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
 %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
  <title> session.jsp </title>
    
	  </head>
  
  <body>
	 <% boolean isLogin=false;
	 boolean isLoginSession=false;
	 boolean isLoginCookie=false;
	 String userNameValue="";
 	 String a=(String)session.getAttribute("username") ; 
 	
 	 if(a!=null&&!"".equalsIgnoreCase(a)){isLogin=true;isLoginSession=true;}
 	 %>a session:<%=a%><hr><%
 	 Cookie[] cookies=request.getCookies();
 	 if(cookies!=null){
 	 for(int i=0;i<cookies.length;i++)
 	 {
 	 Cookie cook=cookies[i];
 	 %>cookies:<%=(i+1)%>:<%=cook.getName()%>-- <%=cook.getValue()%><br><%
 	    if(cook!=null&&"username".equals(cook.getName()))
 	    {
 	    isLogin=true;
 	    isLoginCookie=true;
 	    userNameValue=cook.getValue();
 	    } 
 	 }
 	 }
 	if(isLoginCookie==true&&isLoginSession==false){
 	 session.removeAttribute("username");
 	session.setAttribute("username",userNameValue);
  	}
 	%><hr>session add by cookie:<%= session.getAttribute("username")%>:End<%
 	 if(isLogin==true){
 	  
 	 %> 
	 <!-- 这里放用户提示模块 已登录 -->
	 <div style="align:right"> <a href="#">用户中心</a>  &nbsp;&nbsp;&nbsp;&nbsp; <a href="<%=path%>/login!logOut">注销</a></div>
	
<% } else{
	 %>
	 <!-- 这里放用户登录 注册提示页面 -->
	 <div style="align:right"> <a href="#">登录</a>  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#">注册</a></div>
    
     <%} %>

   </body>
</html>


logout.jsp 登出提示 并提供到首页的连接
<html>
  <head>
   
    <title>退出</title>
    

  </head><body> <br> <br> <br> <br>
  退出成功,请点击返回<a href="<%=path %>/session.jsp">session.jsp</a> 。
   <br>
      <br>
  </body>
</html>




src.rar是后台class 包含登陆和登出的具体操作代码。

你可能感兴趣的:(java,html,jsp)