源码网,源码论坛,源码之家,商业源码,游戏源码下载,discuz插件,棋牌源码下载,精品源码论坛

 找回密码
 立即注册
查看: 441|回复: 35

[JSP编程] servlet中session简介和使用例子

[复制链接]

7万

主题

861

回帖

32万

积分

论坛元老

Rank: 8Rank: 8

积分
329525
发表于 2014-4-23 10:39:13 | 显示全部楼层 |阅读模式
在servlet中,session是封装在javax.servlet.http.HttpSession这个接口中的,这个接口是构建在cookie或者URL重写的基础上,要得到一个HttpSession的实例,就可以通过HttpServletRequest的getSession()方法来获得

HttpServletRequest有两个重载的getSession()方法,一个接受一个boolean的类型的值,另一个不带任何参数,getSession()方法和getSession(true)方法功能一样,就是如果对应的客户端已经产生过一个session,那么就会返回这个旧的session,否则,这个方法将会产生一个session ID并且和对应的客户端绑定在一起,而如果getSession(false)表示如果对应的客户端已经有对应的session,那么返回这个旧的session,否则不会产生新的session。可以使用HttpSession对象上的isNow()方法来判定这个session是否为新建的

HttpSession常用方法

public void setAttribute(String name,Object value)
将value对象以name名称绑定到会话

public object getAttribute(String name)
取得name的属性值,如果属性不存在则返回null

public void removeAttribute(String name)
从会话中删除name属性,如果不存在不会执行,也不会抛处错误.

public Enumeration getAttributeNames()
返回和会话有关的枚举值

public void invalidate()
使会话失效,同时删除属性对象

public Boolean isNew()
用于检测当前客户是否为新的会话

public long getCreationTime()
返回会话创建时间

public long getLastAccessedTime()
返回在会话时间内web容器接收到客户最后发出的请求的时间

public int getMaxInactiveInterval()
返回在会话期间内客户请求的最长时间为秒

public void setMaxInactiveInterval(int seconds)
允许客户客户请求的最长时间

ServletContext getServletContext()
返回当前会话的上下文环境,ServletContext对象可以使Servlet与web容器进行通信

public String getId()
返回会话期间的识别号

一个保存信息到session的简单例子

sessionlogin.html
复制代码 代码如下:

<meta name="keywords" content="keyword1,keyword2,keyword3" />
<meta name="description" content="this is my page" />
<meta name="content-type" content="text/html; charset=UTF-8" />

 <!--    <link rel="stylesheet" type="text/css" href="./styles.css">--></pre>
<form action="servlet/saveinfo" method="post">
 用户名:
 <input type="text" name="username" /> <input type="submit" />

 密码:
 <input type="password" name="userpasswd" />

 </form>
<pre>

</pre>
</div>
<div>

复制代码 代码如下:
package chap03;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

public class saveinfo extends HttpServlet {

/**
 * Constructor of the object.
 */
 public saveinfo() {
 super();
 }

/**
 * Destruction of the servlet.

 */
 public void destroy() {
 super.destroy(); // Just puts "destroy" string in log
 // Put your code here
 }

/**
 * The doGet method of the servlet.

 *
 * This method is called when a form has its tag value method equals to get.
 *
 * @param request the request send by the client to the server
 * @param response the response send by the server to the client
 * @throws ServletException if an error occurred
 * @throws IOException if an error occurred
 */
 public void doGet(HttpServletRequest request, HttpServletResponse response)
 throws ServletException, IOException {

 //如果用户输入过了用户名 则将其放在session中
 if(request.getParameter("username")!=null);
 {
 HttpSession session = request.getSession();
 session.setAttribute("username",request.getParameter("username"));
 }
 response.setContentType("text/html;charset=GBK");
 PrintWriter out = response.getWriter();
 out.println("session已经创建");
 out.println("
");
 out.println("跳转到其他<a>页面</a>");

 }

/**
 * The doPost method of the servlet.

 *
 * This method is called when a form has its tag value method equals to post.
 *
 * @param request the request send by the client to the server
 * @param response the response send by the server to the client
 * @throws ServletException if an error occurred
 * @throws IOException if an error occurred
 */
 public void doPost(HttpServletRequest request, HttpServletResponse response)
 throws ServletException, IOException {

 doGet(request,response);
 }

/**
 * Initialization of the servlet.

 *
 * @throws ServletException if an error occurs
 */
 public void init() throws ServletException {
 // Put your code here
 }

}</pre>
</div>
<div>


复制代码 代码如下:
package chap03;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
public class getsession extends HttpServlet {

/**
 * Constructor of the object.
 */
 public getsession() {
 super();
 }

/**
 * Destruction of the servlet.

 */
 public void destroy() {
 super.destroy(); // Just puts "destroy" string in log
 // Put your code here
 }

/**
 * The doGet method of the servlet.

 *
 * This method is called when a form has its tag value method equals to get.
 *
 * @param request the request send by the client to the server
 * @param response the response send by the server to the client
 * @throws ServletException if an error occurred
 * @throws IOException if an error occurred
 */
 public void doGet(HttpServletRequest request, HttpServletResponse response)
 throws ServletException, IOException {

response.setContentType("text/html;charset=GBK");
 PrintWriter out = response.getWriter();

 String username = "";
 //此处不是创建session 而是去取已经创建的session
 HttpSession session = request.getSession();
 //如果已经取到,说明已经登录
 if(session!=null)
 {
 username = (String)session.getAttribute("username");
 out.println("获得创建的Session");
 out.println("
");
 out.println("登录名:"+username);
 }
 else
 {
 response.sendRedirect("../sessionlogin.html");
 }
 }

/**
 * The doPost method of the servlet.

 *
 * This method is called when a form has its tag value method equals to post.
 *
 * @param request the request send by the client to the server
 * @param response the response send by the server to the client
 * @throws ServletException if an error occurred
 * @throws IOException if an error occurred
 */
 public void doPost(HttpServletRequest request, HttpServletResponse response)
 throws ServletException, IOException {
 doGet(request,response);
 }

/**
 * Initialization of the servlet.

 *
 * @throws ServletException if an error occurs
 */
 public void init() throws ServletException {
 // Put your code here
 }

}</pre>
</div>
<div></div>
<div>

回复

使用道具 举报

0

主题

1万

回帖

0

积分

中级会员

Rank: 3Rank: 3

积分
0
发表于 2022-10-30 17:41:24 | 显示全部楼层
给爸爸爸爸爸爸爸爸爸爸八佰伴八佰伴
回复 支持 反对

使用道具 举报

2

主题

1万

回帖

146

积分

注册会员

Rank: 2

积分
146
发表于 2022-12-2 22:20:59 | 显示全部楼层
2222222222222222
回复 支持 反对

使用道具 举报

0

主题

2万

回帖

0

积分

中级会员

Rank: 3Rank: 3

积分
0
发表于 2023-6-24 00:00:45 | 显示全部楼层
好人好人好人好人
回复 支持 反对

使用道具 举报

3

主题

2万

回帖

172

积分

注册会员

Rank: 2

积分
172
发表于 2023-6-24 00:31:55 | 显示全部楼层
好东西可以可以可以可以
回复 支持 反对

使用道具 举报

2

主题

2万

回帖

221

积分

中级会员

Rank: 3Rank: 3

积分
221
发表于 2023-8-17 00:45:22 | 显示全部楼层
啦啦啦啦啦啦啦啦!
回复 支持 反对

使用道具 举报

0

主题

1万

回帖

100

积分

注册会员

Rank: 2

积分
100
发表于 2023-8-30 18:40:05 | 显示全部楼层
哟哟哟哟哟以偶
回复 支持 反对

使用道具 举报

0

主题

1万

回帖

0

积分

中级会员

Rank: 3Rank: 3

积分
0
发表于 2024-3-12 03:16:45 | 显示全部楼层
你们谁看了弄洒了可能
回复 支持 反对

使用道具 举报

2

主题

2万

回帖

67

积分

注册会员

Rank: 2

积分
67
发表于 2024-4-10 21:31:01 | 显示全部楼层
好东西一定要看看!
回复 支持 反对

使用道具 举报

匿名  发表于 2024-4-10 21:49:06

Прайс На Прокладку Кабеля

q215357618 ·±нУЪ 2023-6-24 00:31
ГОчЙТФЙТФЙТФЙТФ

Сегодня в обещанном ролике провели испытание разных видов плитки https://vrgrad.ru/stati-o-remonte/dizajn-interera-v-kvartire-i-dome/plintus-skrytogo-montazha-i-ego-preimushhestva/
  Бросаем стаканы с водой на плитку, примерно так же бывает, когда случайно на кухне вы задеваете стакан и он падает https://vrgrad.ru/fotogalereya-rabot/vosstanovlenie-posle-pozhara-pos-krasnye-gorki-poselenie-morushkinskoe/
  Эта секунда длится как минута https://vrgrad.ru/chernovoj-remont-dvuhkomnatnoj-kvartiry/
  что сейчас будет https://vrgrad.ru/remont-kuhni-v-stile-loft/
  кто кого: СТАКАН vs ПЛИТКА https://vrgrad.ru/stati-o-remonte/remont-kvartir-sovety-speczialistov/remont-kvartiry-dlya-sdachi-v-arendu/
  Дабы не рисковать вашей красиво уложенной плиткой мы и испытали 4 вида плитки https://vrgrad.ru/stati-o-remonte/elektrika-v-kvartire-i-dome/chto-vazhno-znat-pro-montazh-elektroprovodki-v-kvartire/
  (Мы не дождались полного высыхания клея, и бросали чуть выше положенного) Какая же плитка уцелела? Смотрите этот ролик до самого конца и все увидите https://vrgrad.ru/fotogalereya-rabot/montazh-natyazhnogo-potolka-v-spalne/

Ремонт квартир под ключ в Москве https://vrgrad.ru/remontno-stroitelnye-raboty/montazh-natyazhnyh-potolkov/mnogourovnevye-natyazhnye-potolki/

Капитальный ремонт https://vrgrad.ru/remontno-stroitelnye-raboty/montazh-gipsokartona/montazh-koroba-iz-gipsokartona-v-vannoj/

Брльше асего удивило то , что у компании свой отдел качества , который созванивается постоянно со мной и интересуется все ли устраивает по работам  https://vrgrad.ru/remontno-stroitelnye-raboty/osteklenie/osteklenie-kvartir/
  В быстрые сроки поменяли ламинат и установили межкомнатные двери https://vrgrad.ru/novosti-kompanii/akczii-i-skidki/1-aprelya-den-smeha-i-mesyacz-skidok/
  Договор заключали на квартире вмксте с прорабом и замерщиком , виден сразу проыессианализм  https://vrgrad.ru/remont-dvuhkomnatnoj-kvartiry/
  Не пожалел что попал именно на эту фирму, цена = качкство , спасибо https://vrgrad.ru/remontno-stroitelnye-raboty/montazh-gipsokartona/otkosy-iz-gipsokartona/

оговоренные сроки будут точно соблюдены; клиент получит возможность отслеживать ход работ; обязательная гарантия, как на качество работ, так и на использованные материалы, действует не менее 5 лет https://vrgrad.ru/stati-o-remonte/gipsovaya-shpaklevka-dostoinstva-i-nedostatki-czena/

Делал ремонт в квартире и нужны были грамотные специалисты, обратился сюда и мне с радостью помогли https://vrgrad.ru/remontno-stroitelnye-raboty/teplo-i-zvukoizolyacziya-v-kvartire/zvukoizolyacziya-v-kvartire/
  Всё сделали на высшем уровне, очень доволен https://vrgrad.ru/fotogalereya-rabot/vosstanovlenie-posle-pozhara-pos-krasnye-gorki-poselenie-morushkinskoe/

回复 支持 反对

使用道具

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

手机版|小黑屋|网站地图|源码论坛 ( 海外版 )

GMT+8, 2024-11-22 02:34 , Processed in 0.112376 second(s), 26 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表