1. 程式人生 > >JSP--(應用session物件模擬使用者登入)

JSP--(應用session物件模擬使用者登入)

建立index.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=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<form name="form1" method="post" avtion="">
使用者名稱:<input name="name" type="text" style="width:120px"><br>
密  碼:<input name="pwd" type="password" id="pwd" style="width:120px"><br>
<br>
<input type="submit" name="Submit" value="提交">
</form>
</body>
</html>

編寫deal.jsp檔案,在其中模擬使用者登入(這裡將使用者資訊儲存在一個二維陣列中),如果使用者登入成功,將使用者名稱儲存在session範圍內的變數彙總,並將頁面重定向到mian.jsp頁面,否則將頁面重定向到index.jsp頁面,重新登入。

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@page import="java.util.*"%>
<% 
String[][] userList={{"mr","mesoft"},{"wgh","111"},{"sk","111"}};
boolean flag=false;
request.setCharacterEncoding("GB16030");
String username=request.getParameter("username");
String pwd=request.getParameter("pwd");
for(int i=0;i<userList.length;i++)
{if(userList[i][0].equals(username)){
	if(userList[i][1].equals(pwd)){
		flag=true;
		break;
	}
}
	}

if(flag){
	session.setAttribute("username",username);
	response.sendRedirect("main.jsp");
}
else{
	response.sendRedirect("index.jsp");
}
%>

編寫mian.jsp檔案,在其中首先獲取並顯示儲存在session範圍內的變數,然後新增一個“退出”超連結

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<% 
String username=(String)session.getAttribute("username");//獲取儲存在session範圍內的使用者名稱
%>
<!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=ISO-8859-1">
<title>系統主頁</title>
</head>
<body>
您好![<%=username %>]歡迎您訪問!<br>
<a href="exit.jsp">[退出]</a>
</body>
</html>

編寫exit檔案,在其中銷燬seeion並重定向到index.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=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<% 
session.invalidate();
response.sendRedirect("inde.jsp");
%>
</body>
</html>