HttpServletRequest类的getSession方法有两个:带参数的getSession方法和不带参数的getSession方法
在Servlet中,可以使用HttpSession session = new HttpSession()创建session对象
如果HttpServletRequest类的getSession方法的参数为false,表示如果没有与当前的请求相联系的会话对象时,该方法返回null
如果HttpServletRequest类的getSession方法的参数为true,表示如果没有与当前的请求相联系的会话对象时,该方法返回null
第1题:
A.HttpServletRequest、getSession
B.HttpServletResponse、newSession
C.HtttpSession、newInstance
D.HttpSession、getSession
第2题:
J2EE中,哪个类的哪个方法用于创建对话?()
第3题:
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?()
第4题:
J2EE中,()类的()方法用于创建对话。
第5题:
HttpServletRequest接口的()方法用于创建会话。
第6题:
下面关于Java中会话跟踪的说法错误的是()。
第7题:
用什么方法可以从一个HTTP会话中获得对象?()
第8题:
HttpServletRequest、getSession
HttpServletResponse、newSession
HtttpSession、newInstance
HttpSession、getSession
第9题:
HttpSession session=request.getSession(true)
HttpSession session=request.getHttpSession(true)
HttpSession session=response.getSession(true)
HttpSession session=response.getHttpSession(true)
第10题:
直接返回会话对象
当服务器已经创建了会话对象就返回该对象,否则返回null
直接返回null
当服务器已经创建了会话对象就返回该对象,否则新建一个会话对象并返回
第11题:
session = response.getSession();
session = request.getSession();
session = request.getSession(true);
session = request.getSession(false);
session = request.getSession(jsessionid);
第12题:
HttpServletRequest;getSession
HttpServletRequest;NewSession
HttpSession;newInstance
HttpSession;getSession
第13题:
在public HttpSession getSession(boolean bool)的方法定义中,当bool为false时表明()
第14题:
在J2EE中,对于在Servlet如何获得会话,描述正确的是()。
第15题:
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?()
第16题:
J2EE中,HttpServletRequest类的()方法用返回与当前请求相关联的会话,如果没有,则返回null。
第17题:
在Java EE中,如果req是HttpServletRequest的实例,要通过req获取已经存在的HttpSession对象,如果不存在就创建一个HttpSession对象,下面选项中()可以实现。
第18题:
在Servlet里,能正确获取session的语句是()。
第19题:
HttpSession session=request.getSession(false)与HttpSession session = request.getSession(true)的区别()。
第20题:
getSession(null)
getSession(true)
getSession(false)
第21题:
客户浏览器禁用了Cookie后,在Servlet中的getSession方法就无法获得HttpSession对象了
客户浏览器禁用了Cookie后,可以使用HttpServletResponse接口中的encodeURL()方法对URL编码。但客户如果没有禁用Cookie,使用HttpServletResponse接口中的encodeURL()方法对URL编码会出错
使用HttpServletResponse接口中的encodeURL()方法对URL编码后,这个方法把以分号开头的字符串形式的路径加入到输入的URL中,如;jsessionid = 123456789
只要使用HttpServletResponse接口中的encodeURL()方法对URL进行编码,Web应用程序的用户在浏览器中禁止cookie和不禁止cookie都是一样的
第22题:
req.getSession()
req.getSession(false)
req.getSession(true)
req.createSession()
第23题:
HttpSession session = request.getSession();
HttpSession session = request.getSession(id);
HttpSession session = request.getSession(true);
HttpSession session = request.getSession(false);
HttpSession session = request.getSession(jsessionid);