中国大学MOOC:publicvoiddoPost(HttpServletRequestrequest,HttpServletResponseresponse)throwsServletException,IOException{request.getSession().getAttribute(“A”);//第二行}假定第二行返回的对象引用不是null,那么这个对象存储在()范围中。
举一反三
- 给定一个Servlet程序的代码片段如下:Public void doPost(HttpServletRequest request,HttpServletResponse response) throw ServletException,IOException{Request.getSession().getAttribute(“A”); //第2行}假定第2行返回的对象引用不是null,那么这个对象存储在()范围中。 A: page B: application C: request D: session
- 在Servlet中有一段代码如下 publicvoiddoPost(HttpServletRequestrequest,HttpServletResponseresponse) throwsServletException,IOException{ request.setAttribute("name",newInteger(100)); response.sendRedirect("show.jsp"); } 在show.jsp中 <%=request.getAttribute("name")%> 页面结果为
- 在J2EE中,给定某Servlet的代码如下,编译运行该文件,以下陈述正确的是 PublicclassServlet1extendsHttpServlet{ Publicvoidinit()throwsServletException{ } Publicvoidservice(HttpServletRequestrequest,HttpServletResponseresponse) ThrowsServletException,IOException{ PrintWriterout=response.getWriter(); out.println(“hello!”); }}
- 下面选项中,当存在Session对象直接返回,否则返回null的方法是 A: request.getSession(); B: request.getSession(true); C: request.getSession(false); D: response.getSession();
- 在Servlet中有一段代码如下 public void doPost(HttpServletRequestrequest, HttpServletResponse response) throwsServletException, IOException { request.setAttribute("name