首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
实用职业技能
在JavaWeb程序中,要完成将用户会话中的“counter”计数器的值增加1,下列( )是正确的servlet代码片段。
在JavaWeb程序中,要完成将用户会话中的“counter”计数器的值增加1,下列( )是正确的servlet代码片段。
admin
2017-01-26
23
问题
在JavaWeb程序中,要完成将用户会话中的“counter”计数器的值增加1,下列( )是正确的servlet代码片段。
选项
A、HttpSession session = request.getSession(true);
int ival = session.getAttribute(“counter”);
If(ival == null){
ival=1;
}else{
ival = ival+1;
}
session.setAttribute(“counter”,ival);
B、HttpSession session = request.getSession(true);
Integer ival = (Integer)session.getAttribute(“counter”);
Session.setAttribute(“counter”,ival+1);
C、HttpSession session = request.getSession(true);
int ival = session.getAttribute(“counter”);
If(ival == null){
ival=new Integer(1);
}else{
ival = new Integer( ival.intValue()+1);
}
D、HttpSession session = request.getSession(true);
int ival = session.getAttribute(“counter”);
If(ival == null){
ival=1;
}else{
ival = ival+1;
}
session.setAttribute(“counter”,new Integer(ival));
答案
C
解析
转载请注明原文地址:https://kaotiyun.com/show/JFpD777K
本试题收录于:
北大青鸟Y2题库北大青鸟认证分类
0
北大青鸟Y2
北大青鸟认证
相关试题推荐
根据食品分析称样的一般要求,称取是指用天平进行的称量操作,其精度要求用数值的有效数字表示,如称取20.0g,指称量的精度为±0.01g。
标准作为技术法规,一经发布就具有法律效力,必须严格执行。
原始记录可以先用草稿纸记录,再抄到记录本上,这样整齐、美观,只要数据真实就行。
电热恒温干燥箱一般由箱体、电热系统和自动恒温控制系统三部分组成。
国家标准是最高级别标准,其他标准的技术指标必须低于国家标准。
下列有关盐类对微生物影响的说法,正确的是()。
在测定食品中的灰分含量时,灼烧残留物中不可能存在的是()。
对HDSL系统中传输线的要求是:
电信号有哪些类型?
TSB-67中定义的连接级别个数有:()
随机试题
(Para.2,PassageThree)Forthisreason,theinternationalcommunityhascommitteditselftogettingalltheworld’schildr
A.脾破裂B.消化道出血C.阑尾炎D.结肠破裂E.胃破裂可出现早期症状轻,而晚期症状重的是
气升举无力形成的病证是()脏腑功能低下或衰退形成的病证是()
以下不属于蛛网膜下腔出血临床表现的是
在长管水力计算中,( )。
世界上现存最高的木塔是()。
(92年)设n个随机变量X1,X2,…,Xn独立同分布,DX1=σ2,,则【】
AmericanScientistsTrytoDevelopArtificialBloodVesselwiththeSkinCellScientistshavegrownbloodvesselsforkidney
关于数据库视图,下列说法正确的是()。
StandardEnglishisthevarietyofEnglishwhichisusuallyusedinprintandwhichisnormallytaughtinschoolsandtonon-nat
最新回复
(
0
)