国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > JSP > 正文

JSP登錄中Session的用法實(shí)例詳解

2020-06-01 23:18:14
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

JSP登錄中Session的用法。,具體如下:

登錄頁(yè)面

<%@ 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>Insert title here</title></head><body> <div style="float:left;margin-top:100px;margin-left:200px;width:400px;height:300px;background:gray;"> <form action="IndexServlet" method="post"> <div style="float:left;width:400px;height:30px;background:gray;margin-top:50px">  <div style="margin-left:70px;float:left;line-height:30px">賬號(hào):</div><input style="disply:block;float:left;width:200px;height:30px;border:none;" type="text" name="user"/> </div> <div style="float:left;width:400px;height:30px;background:gray;margin-top:50px">  <div style="margin-left:70px;float:left;line-height:30px">密碼:</div><input style="disply:block;float:left;width:200px;height:30px;border:none;" type="text" name="password"/> </div> <div style="float:left;margin-top:50px;width:400px;height:30px;background:gray;">  <input style="float:left;width:60px;height:30px;margin-left:170px;border:none;" type="submit" name="ok" value="登錄"/> </div> </form> </div></body></html>

檢測(cè)賬號(hào)密碼以及設(shè)置session的IndexServlet

import java.io.IOException;import javax.servlet.ServletException;import javax.servlet.annotation.WebServlet;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import javax.servlet.http.HttpSession;/** * Servlet implementation class IndexServlet */@WebServlet("/IndexServlet")public class IndexServlet extends HttpServlet { private static final long serialVersionUID = 1L;      /**   * @see HttpServlet#HttpServlet()   */  public IndexServlet() {    super();    // TODO Auto-generated constructor stub  }  /** * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) */ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub response.getWriter().append("Served at: ").append(request.getContextPath()); }  /** * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) */ protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub request.setCharacterEncoding("utf-8"); String user = request.getParameter("user"); String password = request.getParameter("password");  String path = request.getContextPath(); HttpSession session=request.getSession();  if ("1".equals(user) && "1".equals(password)) {    session.setAttribute("name", user);  response.sendRedirect(path + "/success.jsp");   }else{  response.sendRedirect(path + "/Index.jsp"); } } }            
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 富源县| 石狮市| 石首市| 松江区| 潞城市| 柘荣县| 平南县| 广元市| 开平市| 东源县| 邯郸县| 蒙阴县| 泰安市| 尉犁县| 仙居县| 无棣县| 大竹县| 新巴尔虎左旗| 同仁县| 益阳市| 镇赉县| 得荣县| 土默特右旗| 吴堡县| 扬州市| 循化| 正宁县| 广州市| 喀喇沁旗| 五莲县| 五大连池市| 新源县| 吉安市| 安乡县| 钦州市| 芮城县| 梓潼县| 北宁市| 田林县| 白山市| 淮南市|