第1章:参考答案:一、填空题(1)HTTP、HTML、RSS/ATOM(2)JavaServerPages、SunMicrosystem、Java(3)path、classpath、C:\jdk\bin、.;C:\Java\jdk\lib\da.jar;C:\Java\jdk\lib\tools.jar;(4)JSP、Servlet二、选择题1-5:ABCD、ABD、D、D、D第2章:参考答案:实验指导:2.5.1.第一处需要填写的代码:pagecontentType=text/html;charset=GB2312import=java.util.*;第二处需要填写的代码:break;2.5.2.第一处需要填写的代码:inti=1;i=n;i++第二处需要填写的代码:sum=Factorial(j);2.5.3.第一处需要填写的代码:page=jspinclude.jsp/第二处需要填写的代码:i0;i--习题集:一、填空题(1)include、page(2)i++;doublep=(a[0]+a[1]+a[2])/2;(3)Math.PI*2*r;doubler;(4)声明了一个long型变量sum:然后调用方法continueSum,将调用方法continueSum得到的值显示到客户:1到101的连续和是:5151您计算的项数超过100项了。(5)year%4==0year%100==0year%400==0二、选择题1-3:B、A、B第3章答案:3.6.1.第一处需要填写的代码:Stringusername=request.getParameter(username);第二处需要填写的代码:admin.equals(username)&&admin.equals(password)3.6.2.第一处需要填写的代码:!goodsName.equals()第二处需要填写的代码:list.add(goodsName);3.6.3.第一处需要填写的代码:oCount==null第二处需要填写的代码:StringdateTime=dateFm.format(newjava.util.Date());第二处需要填写的代码:一、填空题(1)session、application、request、response、out。(2)get、post。(3)java.lang.String、java.lang.Object、java.lang.Object。(4)request.getParameter(num1)、request.getParameter(num2)。(5)(ArrayList)session.getAttribute(list)二、选择题1-4:D、A、B、C第4章参考答案:实验指导:4.6.1.第一处需要的代码:calendar=Calendar.getInstance();第二处需要的代码:returnmonths[m-1];第三处需要的代码:jsp:getPropertyname=calproperty=weekOfYear/4.6.2.第一处需要的代码:jsp:useBeanid=sbscope=pageclass=beans.NoteBean/第二处需要的代码:jsp:getPropertyname=sbproperty=content/4.6.3.第一处需要的代码:list.put(item,str);第二处需要的代码:jsp:setPropertyname=shopproperty=*/习题集:一、填空题1.重用性、封装性、独立性2.page、session、request、application3.jsp:useBean4.setProperty5.jsp:getProperty二、选择题1-6:D、A、B、C、A、A第5章答案:一、填空题(1)java.servlet、java.servlet.http(2)service()、service()(3)init()方法、destroy()方法(4)HttpSession(5)init(config)、setContentType(text/html;charset=GB2312)、getWriter()(6)testServlet、test.MyServlet、/bao/myservlet二、选择题1-4:ABCD、B、C、A第6章:答案:一、填空题(1)驱动程序、数据库、SQL语句、结果集。(2)com.mysql.jdbc.Driver、jdbc:MySQL://localhost:3306/student?user=root&password=123。(3)setInt(1,ID)、setString(2,name)、setString(3,sex)、setInt(3,age)、executeBatch()二、选择题1-3:B、C、C第7章答案:一、填空题(1)数据(2)序言(3)UTF-8(4)开始标记(5)?xmlversion=1.0encoding=gb2312有误,应该为?xmlversion=1.0encoding=gb2312?(6)命名空间不是唯一值。(7)b:title21的哲学/b:title语句不能使用小于号、第二个b:book元素应该以/b:book结束。(8)NodeList、Document(9)TransformerFactory.newInstance()、newTransformer()、transform(domSource,xmlResult)(10)getElementsByTagName(子元素3)、removeChild(node)(11)getElementsByTagName(员工)、removeAttribute(姓名)(12)getElementsByTagName(图书名称)、Node.ELEMENT_NODE、getTextContent()、setTextContent(Ajax教程)、setTextContent(JSP大全)(13)createElement(子节点B)、getElementsByTagName(子节点B)、createTextNode(数据B)、getElementsByTagName(子节点A)、removeChild(node)二、选择题1-5:C、C、A、B、C6-10:B、A、C、A、B11-15:B、D、ABCD、C、C第8章答案实验指导(1)在此添加代码1try{xmlHttp=newActiveXObject(Msxml2.XMLHTTP);}catch(e){try{xmlHttp=newActiveXObject(Microsoft.XMLHTTP);}catch(ee){xmlHttp=false;}在此添加代码2try{xmlHttp=newXMLHttpRequest();}catch(e){xmlHttp=false;}在此添加代码3xmlHttp.open(post,HelloAjaxDo.jsp,true);xmlHttp.setRequestHeader(Content-Type,application/x-=gb2312);(2)在此添加代码1if(window.ActiveXObject){//在IE浏览器中创建XMLHttpRequest对象try{xmlHttp=newActiveXObject(Msxml2.XMLHTTP);}catch(e){try{xmlHttp=newActiveXObject(Microsoft.XMLHTTP);}catch(ee){xmlHttp=false;}}}elseif(window.XMLHttpRequest)//在非IE浏览器中创建XMLHttpRequest对象{try{xmlHttp=newXMLHttpRequest();}catch(e){xmlHttp=false;}}在此添加代码2vardata=xmlHttp.responseText;客户端完整代码%@pagelanguage=javapageEncoding=gb2312%htmlheadtitle客户端解析普通字符串/titlestyletype=text/css!--body{background-image:url(images/img.jpg);}#Layer1{position:absolute;width:663px;height:92px;z-index:1;left:2px;top:3px;}.STYLE1{color:#FF0000;font-size:10px;}--/style/headscripttype=text/javascriptvarxmlHttp=false;//functioncreateXMLHttpRequest(){if(window.ActiveXObject)//在IE浏览器中创建XMLHttpRequest对象{try{xmlHttp=newActiveXObject(Msxml2.XMLHTTP);}catch(e){try{xmlHttp=newActiveXObject(Microsoft.XMLHTTP);}catch(ee){xmlHttp=false;}}}elseif(window.XMLHttpRequest)//在非IE浏览器中创建XMLHttpRequest对象{try{xmlHttp=newXMLHttpRequest();}catch(e){xmlHttp=false;}}}functionstrParse(){createXMLHttpRequest();//调用创建XMLHttpRequest对象的方法xmlHttp.onreadystatechange=callback;//设置回调函数xmlHttp.open(post,Ajax.txt,true);//向服务器端发送请求xmlHttp.setRequestHeader(Content-Type,application/x-=gb2312);xmlHttp.send(null);functioncallback()//定义回调函数{if(xmlHttp.readyState==4){if(xmlHttp.status==200){vardata=xmlHttp.responseText;varpNode=document.getElementById(display);pNode.innerHTML=data;}}}}/scriptbodydivid=Layer1imgsrc=../baner.jpgwidth=1000height=92/divp /pp /pp /pbrcenterbuttononClick=strParse()普通字符串/buttondivid=displayalign=center/div/centertablewidth=90%border=0cellspacing=0cellpadding=0align=centerheight=1trtdbgcolor=#000000/td/tr/tabletablewidth=96%border=0cellspacing=0cellpadding=4align=centertrtddivalign=centerclass=STYLE1IT在中国电脑学习网!@2007br公司地址:郑州市二七路200号金博大D座2708室br电话:66202195电子邮件:itzcn