【单选题】现在session中没有任何属性,阅读下面2个JSP中的代码,将分别输出()。 <% out.println(session.getAttribute("svse")); %> <% session.invalidate(); out.println(session.getAttribute("svse")); %>
A.null, 异常信息
B.null, null
C.异常信息,异常信息
D.异常信息,null
第1题:
阅读下列代码: public class Test{ public static void main(String args[])[ System. out.println(89>>1 ); } }
A.44
B.45
C.88
D.90
第2题:
A.null
B.svse
C.bob
D.啥也没有
第3题:
请教下,jsp中如何写一个session将数据保存在session中,由于是新手,麻烦写段简单的代码实例。
session是jsp中九大内置对象之一,所以在jsp 中可以直接获取session对象。
如果说我们要保存用session保存用户名和密码可以这样写
<% session.setAttribute("username","admin");
session.setAttribute("password","admin"); %>
获取用户名和密码时:<% session.getAttribute("username"); %>
第4题:
下面语句中,正确的是()
第5题:
对如下JSP 代码说法正确的是()。 <% Sring str = ”Hello.JBIT!”; session.setAttribute(“msg’,str); String getStr = session.getAttribute(“msg”); out.println(getStr); %>
第6题:
在JSP中,只有一行代码:<%=AB%>,运行将输出()。
第7题:
下面哪个方法可使session无效()
第8题:
以下()是错误的JSP页面的表达方式。
第9题:
运行成功,页面上输出Hello.JBIT;
运行成功,页面上输出msg;
代码行session.setAttribute(“msg’,str);有错误,无法运行
代码行String getStr = session.getAttribute(“msg”);有错误,无法运行
第10题:
HttpSession session=request.getSession(true);
Session session=new Session();
session.setAttribute(username,admin);
String username=(String)session.getAttribute(username);
response.add Session(Session);
第11题:
这行代码没有对应的输出
这行代码对应的输出时6
这行代码对应的输出时24
这行代码将引发错误
第12题:
The value returned needs to be cast to an int.
The getAttribute methos takes two arguments.
Primitive CANNOT be stored in the HttpSession.
The HttpSession attribute name must NOT exceed eight characters.
第13题:
A.request.sendRedirect(“http://www.svse.com.cn”);
B.request.sendRedirectt();
C.response.sendRedirect(“http://www.svse.com.cn”);
D.response.sendRedirect();
第14题:
A.1+2
B.3
C.null
D.没有任何输出,因为表达式是错误的
第15题:
以下()可用于检索session属性userid的值。
第16题:
下列操作Session时,代码错误的是()
第17题:
Jsp内嵌对象session的类型为javax.servlet.http. HttpSession,下述语句会使该对象失效的是()
第18题:
在某个JSP页面中存在这样一行代码,<%= “2” + “4” %> 运行该JSP后,以下说法正确的是()。
第19题:
要在session对象中保存属性,可以使用以下哪个语句?()
第20题:
Given that session is a valid HttpSession object: Int max = session.getAttribute(“MyReallyLongName”); Which is true?()
第21题:
AB
113
没有任何输出,因为表达式是错误的
第22题:
public.class.AddAction.implements.Action{...
mapping.findForward(/ch01/result.jsp)
form.method=getaction=add.do
action.name=addActionpath=/addtype=com.svse.web.action.AddAction
第23题:
〈%! int a; %〉
〈%= Hello %〉
〈%= world; %〉
〈% out.println(jsp); %〉
第24题:
1+2
3
null
没有任何输出,因为表达式是错误的