欢迎来到天天文库
浏览记录
ID:51617495
大小:256.50 KB
页数:10页
时间:2020-03-26
《JAVAWEB开发实战经典PPT030906_取得其他内置对象.ppt》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、JAVAWEB开发实战经典第9章:Servlet程序开发——取得其他内置对象李兴华北京魔乐科技软件学院本章目标可以从Servlet中取得session对象并进行操作;可以从Servlet中取得Application对象并进行操作。取得HttpSession实例在Servlet程序中要想取得一个session对象,则可以通过HttpServletRequest接口完成,在此接口中提供了以下的操作方法publicHttpSessiongetSession()publicHttpSessiongetSession(booleancreate)取得HttpSession
2、对象packageorg.lxh.servletdemo;importjavax.servlet.ServletException;importjavax.servlet.http.HttpServlet;importjavax.servlet.http.HttpServletRequest;importjavax.servlet.http.HttpServletResponse;importjavax.servlet.http.HttpSession;publicclassHttpSessionDemoServletextendsHttpServlet{//继
3、承HttpServletpublicvoiddoGet(HttpServletRequestreq,HttpServletResponseresp)throwsServletException,java.io.IOException{//处理服务HttpSessionses=req.getSession();//取得session对象System.out.println("SESSIONID-->"+ses.getId());//取得sessionidses.setAttribute("username","李兴华");//设置属性System.out.prin
4、tln("username属性内容:"+ses.getAttribute("username"));}publicvoiddoPost(HttpServletRequestreq,HttpServletResponseresp)throwsServletException,java.io.IOException{//处理服务this.doGet(req,resp);//调用doGet()}}配置web.xmlsessiondemoorg.lxh.servletdemo.HttpSessionDemoServletsessiondemo/HttpSessionDemoServlet取得Servl
6、etContext实例application内置对象是ServletContext接口的实例,表示的是Servlet上下文,如果要在一个Servlet中使用此对象,直接通过GenericServlet类提供的方法即可:publicServletContextgetServletContext()取得application对象packageorg.lxh.servletdemo;importjavax.servlet.ServletContext;importjavax.servlet.ServletException;importjavax.servlet.ht
7、tp.HttpServlet;importjavax.servlet.http.HttpServletRequest;importjavax.servlet.http.HttpServletResponse;publicclassServletContextDemoServletextendsHttpServlet{//继承HttpServletpublicvoiddoGet(HttpServletRequestreq,HttpServletResponseresp)throwsServletException,java.io.IOException{//处理服
8、务ServletCont
此文档下载收益归作者所有