servletContext和Cookies对象

1.获取servletContext对象():

servletContext s = this.getServletContext();

添加信息:

s.setAttribute("String name","Object value");

获取对象:

s.getAttribute("name");

删除对象:

s.removeAttribute("name");

修改对象:

s.replaceAttribute("name");

2.cookie(不清理缓存就会一直存在)

Cookie c = new Cookie("name","value");

响应添加Cookie

reponse.addCookie(c);

然后再重定向到想打开的地址

获取Cookies

request.getCookies();

c.getName();//获取名称

c.getValue();//获取值

c.setMaxAge("time");//设置cookie的生存时间,秒为单位

3.session(随着浏览器关闭而关闭)

(session在活动重新刷新时间,Cookie一般用作于长时间保存内容)

session.setMaxInactiveInterval("");//秒为单位

session.timeOut("money");//分钟为单位

4.userBean

导包

你可能感兴趣的:(servletContext和Cookies对象)