J2EE中,哪个类的哪个方法用于创建对话?()A、HttpServletRequest、getSessionB、HttpServletResponse、newSessionC、HtttpSession、newInstanceD、HttpSession、getSession

J2EE中,哪个类的哪个方法用于创建对话?()

  • A、HttpServletRequest、getSession
  • B、HttpServletResponse、newSession
  • C、HtttpSession、newInstance
  • D、HttpSession、getSession

相关考题:

下列哪个方法用于URL重写() A、HttpServletResponse接口的rewriteURL()方法B、HttpServlet接口的rewriteURL()方法C、HttpServletRequest接口的encodeURL()方法D、HttpServletResponse接口的encodeURL()方法

在J2EE中,以下对于会话跟踪的描述,正确的是()。 A.客户浏览器禁用了Cookie后,在Servlet中的getSession方法就无法获得HttpSession对象了B.客户浏览器禁用了Cookie后,可以使用HttpServletResponse接口中的encodeURL()方法对URL编码。但客户如果没有禁用Cookie,使用HttpServletResponse接口中的encodeURL()方法对URL编码会出错C.使用HttpServletResponse接口中的encodeURL()方法对URL编码后,这个方法把以分号开头的字符串形式的路径加入到输入的URL中,如;jsessionid=123456789D.只要使用HttpServletResponse接口中的encodeURL()方法对URL进行编码,Web应用程序的用户在浏览器中禁止cookie和不禁止cookie都是一样的

在J2EE中,对于在Servlet如何获得会话,描述正确的是()。 A.HttpServletRequest类的getSession方法有两个:带参数的getSession方法和不带参数的getSession方法B.在Servlet中,可以使用HttpSessionsession=newHttpSession()创建session对象C.如果HttpServletRequest类的getSession方法的参数为false,表示如果没有与当前的请求相联系的会话对象时,该方法返回nullD.如果HttpServletRequest类的getSession方法的参数为true,表示如果没有与当前的请求相联系的会话对象时,该方法返回null

J2EE中,()类型的()方法用于得到会话。 A.HttpServletRequest、getSessionB.HttpServletResponse、newSessionC.HtttpSession、newInstanceD.HttpSession、getSession

Servlet的基本架构public class ServletName extends HttpServlet {public void doPost(HttpServletRequest request, HttpServletResponse response) throwsServletException, IOException {}public void doGet(HttpServletRequest request, HttpServletResponse response) throwsServletException, IOException {}}1、用String的方法将数据类型转换为String。

在Java Web开发中,要在服务器端查询cookie,要用到HttpServletRequest的哪个方法?()A、sessionB、getCookiesC、addCookieD、getSession

Servlet可以通过以下哪个接口实现请求转发机制?()A、HttpServletRequest接口B、RequestDispatcher接口C、HttpServletResponse接口D、ServletConfig接口E、Filter接口

下面哪个方法不是HttpServlet类:()A、protected void doGet(HttpServletRequest reg,HttpServletResponse res) throws Servlet Exception ,java.io.IOExceptionB、protected void doPost(HttpServletRequest reg,HttpServletResponse res) throws Servlet Exception,java.io.IOExceptionC、protected void doHead(HttpServletRequest reg,HttpServletResponse res) throws Servlet Exception,java.io.IOExceptionD、protected void doReceive(HttpServletRequest reg,HttpServletResponse res) throws ServletException,java.io.IOException

在J2EE中,对于在Servlet如何获得会话,描述正确的是()。     A、HttpServletRequest类的getSession方法有两个:带参数的getSession方法和不带参数的getSession方法B、在Servlet中,可以使用HttpSession session = new HttpSession()创建session对象C、如果HttpServletRequest类的getSession方法的参数为false,表示如果没有与当前的请求相联系的会话对象时,该方法返回nullD、如果HttpServletRequest类的getSession方法的参数为true,表示如果没有与当前的请求相联系的会话对象时,该方法返回null

Given an HttpServletRequest request and an HttpServletResponse response: 41.HttpSession session = null; 42.// insert code here 43.if(session == null) { 44.// do something if session does not exist 45.} else { 46.// do something if session exists47. } To implement the design intent,which statement must be inserted at line 42?()A、session = response.getSession();B、session = request.getSession();C、session = request.getSession(true);D、session = request.getSession(false);E、session = request.getSession("jsessionid");

Given an HttpServletRequest request: 22.String id = request.getParameter("jsessionid"); 23.// insert code here 24.String name = (String) session.getAttribute("name"); Which three can be placed at line 23 to retrieve anexisting HttpSession object?()A、HttpSession session = request.getSession();B、HttpSession session = request.getSession(id);C、HttpSession session = request.getSession(true);D、HttpSession session = request.getSession(false);E、HttpSession session = request.getSession("jsessionid");

J2EE中,()类的()方法用于创建对话。A、HttpServletRequest;getSessionB、HttpServletRequest;NewSessionC、HttpSession;newInstanceD、HttpSession;getSession

J2EE中,HttpServletRequest类的()方法用返回与当前请求相关联的会话,如果没有,则返回null。A、getSession(null)B、getSession(true)C、getSession(false)

HttpServletRequest接口的()方法用于创建会话。A、setSession()B、getContext()C、getSession()D、putSession()

在Java EE中,如果req是HttpServletRequest的实例,要通过req获取已经存在的HttpSession对象,如果不存在就创建一个HttpSession对象,下面选项中()可以实现。A、 req.getSession()B、 req.getSession(false)C、 req.getSession(true)D、 req.createSession()

下列选项中关于HttpSession描述错误的是()。A、 HttpSession通过HttpServletRequest对象获得B、 HttpSession可以用来保存数据,并实现数据的传递C、 HttpSession被创建后,将始终存在,直到服务停止D、 调用HttpSession的invalidate()方法,可以删除创建的HttpSession对象及数据

下列哪个类是抽象类()。A、ServletConfigB、HttpServletC、CookieD、HttpServletRequest

在Servlet里,能正确获取session的语句是()。A、HttpSession session=request.getSession(true)B、HttpSession session=request.getHttpSession(true)C、HttpSession session=response.getSession(true)D、HttpSession session=response.getHttpSession(true)

J2EE中()类()方法用于返回应用程序的上下文路径。A、ServletContext、getContextPath()B、HttpServletRequset、getPathInfo()C、HttpServletRequest、getContextPath()D、ServletContext、getPathInfo()

从HTTP请求中,获得请求参数,应该调用哪个方法?()A、调用HttpServletRequest对象的getAttribute()方法B、调用ServletContext对象的getAttribute()方法C、调用HttpServletRequest对象的getParameter()方法

HttpSession session=request.getSession(false)与HttpSession session = request.getSession(true)的区别()。A、没有区别B、如果当前reqeust中的HttpSession 为null,当传入参数为空时,就创建一个新的Session,否则返回nullC、如果当前reqeust中的HttpSession 为null,当传入参数为true时,就创建一个新的Session,否则返回null

多选题在J2EE中,对于在Servlet如何获得会话,描述正确的是()。AHttpServletRequest类的getSession方法有两个:带参数的getSession方法和不带参数的getSession方法B在Servlet中,可以使用HttpSession session = new HttpSession()创建session对象C如果HttpServletRequest类的getSession方法的参数为false,表示如果没有与当前的请求相联系的会话对象时,该方法返回nullD如果HttpServletRequest类的getSession方法的参数为true,表示如果没有与当前的请求相联系的会话对象时,该方法返回null

单选题从HTTP请求中,获得请求参数,应该调用哪个方法?()A调用HttpServletRequest对象的getAttribute()方法B调用ServletContext对象的getAttribute()方法C调用HttpServletRequest对象的getParameter()方法

单选题J2EE中,哪个类的哪个方法用于创建对话?()AHttpServletRequest、getSessionBHttpServletResponse、newSessionCHtttpSession、newInstanceDHttpSession、getSession

单选题下列选项中关于HttpSession描述错误的是()。A HttpSession通过HttpServletRequest对象获得B HttpSession可以用来保存数据,并实现数据的传递C HttpSession被创建后,将始终存在,直到服务停止D 调用HttpSession的invalidate()方法,可以删除创建的HttpSession对象及数据

多选题Given an HttpServletRequest request: 22.String id = request.getParameter("jsessionid"); 23.// insert code here 24.String name = (String) session.getAttribute("name"); Which three can be placed at line 23 to retrieve anexisting HttpSession object?()AHttpSession session = request.getSession();BHttpSession session = request.getSession(id);CHttpSession session = request.getSession(true);DHttpSession session = request.getSession(false);EHttpSession session = request.getSession(jsessionid);

单选题J2EE中,()类的()方法用于创建对话。AHttpServletRequest;getSessionBHttpServletRequest;NewSessionCHttpSession;newInstanceDHttpSession;getSession