2024年1月15日发(作者:)

江苏海事职业技术学院

2011/2012学年第二学期期末考试试卷(B)答案

适考专业:计算机网络技术 试卷编号:

考试科目:JSP程序设计 考试类型:考试

一、选择题(每题1分 共50分)

1.DriverManager类的getConnection(String url,String user,String password)方法中,参数url的格式为jdbc:<子协议>:<子名称>,下列哪个url是不正确的?(B)

A)”jdbc:mysql://localhost:80/数据库名”

B)”jdbc:odbc:数据源”

C)”jdbc:oracle:thin@host:端口号:数据库名”

D)”jdbc:sqlserver://172.0.0.1:1443;DatabaseName=数据库名”

2.查询结果集ResultSet对象是以统一的行列形式组织数据的,执行ResultSet rs =

eQuery ("select bid,name,author,publish,price from book");语句,得到的结果集rs的列数为( B )

A)4 B)5

C)6 D)不确定

3.下列哪个作用范围的Bean,当客户离开这个页面时,JSP引擎取消为客户该页面分配的Bean,释放他所占的内存空间。(C)

A)application B)request

C)page D)session

4.JSP页面可以在“<%=”和“%>”标记之间放置Java表达式,直接输出Java表达式的值。组成“<%=”标记的各字符之间(B)。

A)可以有空格 B)不可以有空格

C)必须有空格 D)不确定

5.以下哪个对象提供了访问和放置页面中共享数据的方式(D)

A)pageContext B)response C)request D)session

6.( D)是标题标记。

A)

标记 B)

标记 C)


标记 D)

7.使用动作标记可以在JSP页面中得到Bean实例的属性值,并将其转系部:信息工程系

班级:

姓名:

学号:

换为什么类型的数据,发送到客户端。( A )

A)String B)Double

C)Object D)Classes

8.当利用request的方法获取Form中元素时,默认情况下字符编码是哪个(A)

A)ISO-8859-1 B)GB2312 C)GB3000 D)ISO-8259-1

9.调用getCreationTime()可以获取session对象创建的时间,该时间的单位是(C)。

A)秒 B)分秒 C)毫秒 D)微秒

10.JSP的Page编译指令的属性Language的默认值是:(A)

A)Java B)C

C)C# D)SQL

11.可以在以下哪个( )标记之间插入变量与方法声明?(B)

A)<% 和 %> B)<%! 和 %>

C) D)<% 和 !>

12.动作标记中,scope的值不可以是(D)。

A)page B)request

C)session D)response

13.下列变量声明在( )范围内有效。(C)。

<%! Date dateTime;

int countNum;

%>

A)从定义开始处有效,客户之间不共享

B)在整个页面内有效,客户之间不共享

C)在整个页面内有效,被多个客户共享

D)从定义开始处有效,被多个客户共享

14.下面描述错误的是(C)

A)HTML文件必须由开头,标记结束。

B)文档头信息包含在与之间。

C)在和之间可以包含和<body>等信息。 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>2 </p><p style="text-indent: 2em;";>D)文档体包含在<body>和</body>标记之间 </p><p style="text-indent: 2em;";>15.JSP页面通过( C )来识别Bean对象,可以在程序片中通过形式来调用Bean中的set和get方法。 </p><p style="text-indent: 2em;";>A)name B)class </p><p style="text-indent: 2em;";>C)id D)classname </p><p style="text-indent: 2em;";>16.JSP的编译指令标记通常是指:(A) </p><p style="text-indent: 2em;";>A)Page指令、Include指令和Taglib指令 </p><p style="text-indent: 2em;";>B)Page指令、Include指令和Plugin指令 </p><p style="text-indent: 2em;";>C)Forward指令、Include指令和Taglib指令 </p><p style="text-indent: 2em;";>D)Page指令、Param指令和Taglib指令 </p><p style="text-indent: 2em;";>17.一个典型的HTTP请求消息包括请求行、多个请求头和( B ) </p><p style="text-indent: 2em;";>A)响应行 B)信息体 C)响应行 D)响应头 </p><p style="text-indent: 2em;";>18.下面不属于JSP内置对象的是(D) </p><p style="text-indent: 2em;";>A)out对象 B)respone对象 C)application对象 D)page对象 </p><p style="text-indent: 2em;";>19.out对象是一个输出流,其输出不换行的方法是(A) </p><p style="text-indent: 2em;";>A)( ) B)e( ) </p><p style="text-indent: 2em;";>C)n( ) D)( ) </p><p style="text-indent: 2em;";>20.下列()注释为隐藏型注释。(C)。 </p><p style="text-indent: 2em;";>A)<!-- 注释内容 [<%= 表达式 %>] --> </p><p style="text-indent: 2em;";>B)<!-- 注释内容 --> </p><p style="text-indent: 2em;";>C)<%-- 注释内容 --%> </p><p style="text-indent: 2em;";>D)<!—[<%= 表达式 %>] --> </p><p style="text-indent: 2em;";>21.能在浏览器的地址栏中看到提交数据的表单提交方式是( B ) </p><p style="text-indent: 2em;";>A)submit B)get </p><p style="text-indent: 2em;";>C)post D)out </p><p style="text-indent: 2em;";>22.JSP页面程序片中可以使用下列哪个方法将strNumx=amter("ix")得到的数据类型转换为Double类型( B) </p><p style="text-indent: 2em;";>A)tring(strNumx) B) ouble(strNumx) </p><p style="text-indent: 2em;";>C)nteger(strNumx) D)loat(strNumx) </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>3 </p><p style="text-indent: 2em;";>23.下面不属于<input>标记中的name属性取值的是(D) </p><p style="text-indent: 2em;";>A)password B)hidden C)submit D)textarea </p><p style="text-indent: 2em;";>24.设置文档体背景颜色的属性是(C ) </p><p style="text-indent: 2em;";>A)text B)bgcolor C) background D) link </p><p style="text-indent: 2em;";>25.使用<jsp:setProperty>动作标记可以在JSP页面中设置Bean的属性,但必须保证Bean有对应的什么方法。(B) </p><p style="text-indent: 2em;";>A)SetXxx方法 B)setXxx方法 </p><p style="text-indent: 2em;";>C)getXxx方法 D)GetXxx方法 </p><p style="text-indent: 2em;";>26.out对象是一个输出流,其输出各种类型数据并换行的方法是(C) </p><p style="text-indent: 2em;";>A)( ) B)e( ) </p><p style="text-indent: 2em;";>C)n( ) D)( ) </p><p style="text-indent: 2em;";>27.可以利用JSP动态改变客户端的响应,使用的语法是(A) </p><p style="text-indent: 2em;";>A)der() B)der() </p><p style="text-indent: 2em;";>C)eader() D)rHeader() </p><p style="text-indent: 2em;";>28.JavaBean可以通过相关jsp动作指令进行调用。下面哪个不是JavaBean可以使用的jsp动作指令?(D) </p><p style="text-indent: 2em;";>A)<jsp:useBean> B)<jsp:setProperty> </p><p style="text-indent: 2em;";>C)<jsp:getProperty> D)<jsp:setParameter> </p><p style="text-indent: 2em;";>29.JavaBean可以通过相关jsp动作指令进行调用。下面哪个不是JavaBean可以使用的jsp动作指令?(D) </p><p style="text-indent: 2em;";>A)<jsp:useBean> B)<jsp:setProperty> </p><p style="text-indent: 2em;";>C)<jsp:getProperty> D)<jsp:setParameter> </p><p style="text-indent: 2em;";>30.给出了如下的查询条件字符串String condition="insert book values(?,?,?,?,?)";下列哪个接口适合执行该SQL查询(B) </p><p style="text-indent: 2em;";>A)Statement </p><p style="text-indent: 2em;";>B)PrepareStatement </p><p style="text-indent: 2em;";>C)CallableStatement </p><p style="text-indent: 2em;";>D)不确定 </p><p style="text-indent: 2em;";>31.下列哪个作用范围的Bean,被Web服务目录下所有用户共享,任何客户对Bean属 </p><p style="text-indent: 2em;";>4 </p><p style="text-indent: 2em;";>性的修改都会影响到其他用户。(A) </p><p style="text-indent: 2em;";>A)application B)request </p><p style="text-indent: 2em;";>C)page D)session </p><p style="text-indent: 2em;";>32.<select>用于在表单中来定义下拉列表框和滚动列表框控件,哪个属性指定列表框的类型( A ) </p><p style="text-indent: 2em;";>A)size B)value C)selected D)checked </p><p style="text-indent: 2em;";>33.在JSP页面中使用<jsp:setProperty name="beanid" property="bean的属性" value="字符串" />格式给Long类型的Bean属性赋值,会调用哪个数据类型转换方法。(A) </p><p style="text-indent: 2em;";>A)ong(String s) B)nt(Stirng s) </p><p style="text-indent: 2em;";>C)ouble(String s) D)不确定 </p><p style="text-indent: 2em;";>34.下面常用的正则表达式中,表示数字的是 ( A ) </p><p style="text-indent: 2em;";>A)^d+(.d+)*$ B)^[0-9]*[1-9][0-9]*$ </p><p style="text-indent: 2em;";>C)^(-?d+)(.d+)?$ D)[u4e00-u9fa5] </p><p style="text-indent: 2em;";>35.下面是FileOutputStream对象写入的代码片段: </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>String filesMess=”abcdef”; </p><p style="text-indent: 2em;";>FileOutputStream outf=new FileOutputStream(fileName); </p><p style="text-indent: 2em;";>BufferedOutputStream bufferout= </p><p style="text-indent: 2em;";> new BufferedOutputStream(outf); </p><p style="text-indent: 2em;";>byte b[]=es(); </p><p style="text-indent: 2em;";>(b); </p><p style="text-indent: 2em;";>(); </p><p style="text-indent: 2em;";>(); </p><p style="text-indent: 2em;";>(); </p><p style="text-indent: 2em;";>代码执行后,文件中会写入哪个字符串的字节码(B ) </p><p style="text-indent: 2em;";>A)”filesMess” B)”abcdef” </p><p style="text-indent: 2em;";>C)”b” D)不确定 </p><p style="text-indent: 2em;";>36.BufferedReader处理Reader类中的方法外,还提供了public String readLine()方法,该方法读入一行文本,这里的“一行”指字符串以“n”或什么做结尾。(C) </p><p style="text-indent: 2em;";>A)t B)f </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>5 </p><p style="text-indent: 2em;";>C)r D)p </p><p style="text-indent: 2em;";>37.include指令用于在JSP页面静态插入一个文件,插入文件可以是JSP页面、HTML网页、文本文件或一段Java代码,但必须保证插入后形成的文件是(B)。 </p><p style="text-indent: 2em;";>A)是一个完整的HTML文件 </p><p style="text-indent: 2em;";>B)是一个完整的JSP文件 </p><p style="text-indent: 2em;";>C)是一个完整的TXT文件 </p><p style="text-indent: 2em;";>D)是一个完整的Java源文件 </p><p style="text-indent: 2em;";>38.在JSP页面中使用<jsp:setProperty name="bean的名字" property ="*" />格式,将表单参数为Bean属性赋值,property="*"格式要求Bean的属性名字(B) </p><p style="text-indent: 2em;";>A)必须和表单参数类型一致 B)必须和表单参数名称一一对应 </p><p style="text-indent: 2em;";>C)必须和表单参数数量一致 D)名称不一定对应 </p><p style="text-indent: 2em;";>39.下面哪一项对Servlet描述错误?(C) </p><p style="text-indent: 2em;";>A)Servlet是一个特殊的Java类,它必须直接或间接实现Servlet接口 </p><p style="text-indent: 2em;";>B)Servlet接口定义了Servelt的生命周期方法 </p><p style="text-indent: 2em;";>C)当多个客户请求一个Servlet时,服务器为每一个客户启动一个进程 </p><p style="text-indent: 2em;";>D)Servlet客户线程调用service方法响应客户的请求 </p><p style="text-indent: 2em;";>40.阅读下面代码片段: </p><p style="text-indent: 2em;";>RequestDispatcher dispatcher=uestDispatcher(""); </p><p style="text-indent: 2em;";>d(request,response); </p><p style="text-indent: 2em;";>关于该段代码的作用,下列叙述哪项是正确的?(B) </p><p style="text-indent: 2em;";>A)页面重定向到页面 B)将请求转发到页面 </p><p style="text-indent: 2em;";>C)从定向到当前页面 D)从转发到当前页面 </p><p style="text-indent: 2em;";>41.下列那个调用数据类型转换方法会发生NumberFormatException异常?( D ) </p><p style="text-indent: 2em;";>A)ong(“1234”) B)nt(“1234”) </p><p style="text-indent: 2em;";>C)ouble(“123.45”) D)nt(“123a”) </p><p style="text-indent: 2em;";>42.对于ServletRequest接口的获取请求参数的方法的描述那一项是正确的?(C) </p><p style="text-indent: 2em;";>A)getParameter方法只用于接收POST请求参数,接收GET请求参数需要使用getQueryString方法 </p><p style="text-indent: 2em;";>B)如果一个参数key有多个值,那么getParameter(key)方法会返回空 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>6 </p><p style="text-indent: 2em;";>C)如果一个参数key有多个值,那么getParameterValues(key)方法会返回一个包含所有值的字符串数组 </p><p style="text-indent: 2em;";>D)getParameter方法返回Object对象,使用前要强制类型转换:如String str=(String) </p><p style="text-indent: 2em;";>ameter(key) </p><p style="text-indent: 2em;";>43.下列说法哪一项是正确的(C) </p><p style="text-indent: 2em;";>A)Apache用于ASP技术所开发网站的服务器 </p><p style="text-indent: 2em;";>B)IIS用于CGI技术所开发网站的服务器 </p><p style="text-indent: 2em;";>C)Tomcat用于JSP技术所开发网站的服务器 </p><p style="text-indent: 2em;";>D)WebLogic用于PHP技术所开发网站的服务器 </p><p style="text-indent: 2em;";>44.可以利用request对象的哪个方法获取客户端的表单信息(A) </p><p style="text-indent: 2em;";>A)ameter() B)ameter() </p><p style="text-indent: 2em;";>C)arameter() D)rParameter() </p><p style="text-indent: 2em;";>45.下面哪一项不是加载驱动程序的方法?(A) </p><p style="text-indent: 2em;";>A)通过nection方法加载 </p><p style="text-indent: 2em;";>B)调用方法 e </p><p style="text-indent: 2em;";>C)通过添加系统的s属性 </p><p style="text-indent: 2em;";>D)通过registerDriver方法注册 </p><p style="text-indent: 2em;";>46.在JSP中为内建对象定义了4种作用范围,即Application Scope、Session Scope、Page </p><p style="text-indent: 2em;";>Scope和( A )四个作用范围。 </p><p style="text-indent: 2em;";>A)Request Scope B) Response Scope </p><p style="text-indent: 2em;";>C)Out Scope D) Writer Scope </p><p style="text-indent: 2em;";>47.JavaBean的作用范围可以是page、request、session和( A )四个作用范围中的一种。 </p><p style="text-indent: 2em;";>A)application B)local </p><p style="text-indent: 2em;";>C)global D)class </p><p style="text-indent: 2em;";>48.JavaScript执行表单验证一般都发生在用户单击“提交”按钮后,数据提交服务器之前,onValidate()函数返回值为true时( C )。 </p><p style="text-indent: 2em;";>A)验证不通过,提交数据给服务器 </p><p style="text-indent: 2em;";>B)验证不通过,不提交数据给服务器 </p><p style="text-indent: 2em;";>C)验证通过,提交数据给服务器 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>7 </p><p style="text-indent: 2em;";>D)验证通过,不提交数据给服务器 </p><p style="text-indent: 2em;";>49.当一个客户线程执行某个方法时,其他客户必须等待,直到这个客户线程调用执行完毕该方法后,其他客户线程才能执行,这样的方法在定义时必须使用关键字( C ) </p><p style="text-indent: 2em;";>A)public B)static </p><p style="text-indent: 2em;";>C)synchronized D)private </p><p style="text-indent: 2em;";>50.可以在以下哪个( )标记之间插入Java程序片?(A) </p><p style="text-indent: 2em;";>A)<% 和 %> B)<% 和 /> </p><p style="text-indent: 2em;";>C)</ 和 %> D)<% 和 !> </p><p style="text-indent: 2em;";>二、判断题:(每题0.5分 共20分) </p><p style="text-indent: 2em;";>1.当样式定义重复出现的时候,最先定义的样式起作用(错)。 </p><p style="text-indent: 2em;";>2.超级链接<a>标记的target属性取值为链接的目标窗名,可以是parent、blank、self、top。(错) </p><p style="text-indent: 2em;";>3.JSP引擎执行字节码文件的主要人物之一是直接将HTML内容发给客户端。(对) </p><p style="text-indent: 2em;";>4.JSP页面中的变量和方法声明(Declaration)、表达式(Expression)和Java程序片(Scriptlet)统称为JSP标记。(对) </p><p style="text-indent: 2em;";>5.jsp:include动作标记与include指令标记包含文件的处理时间和方式不同。(对) </p><p style="text-indent: 2em;";>6.实现转发需要两个步骤,首先在Servlet中要得到RequestDispatcher对象,然后在调用该对象的forward方法实现转发。( 对 ) </p><p style="text-indent: 2em;";>7.使用<jsp:setProperty>动作标记,可以使用表达式或字符串为Bean的属性赋值。(对) </p><p style="text-indent: 2em;";>8.JSP技术是在Servlet之后产生的,它以Servlet为核心技术,是Servlet技术的一个成功应用。(对) </p><p style="text-indent: 2em;";>9.一般用JSP来实现页面,用Servlet来处理业务逻辑。(对) </p><p style="text-indent: 2em;";>10.表单信息的验证只能放在服务器端执行。(错 ) </p><p style="text-indent: 2em;";>11.Page指令不能定义当前JSP程序的全局属性。(错) </p><p style="text-indent: 2em;";>12.程序片变量的有效范围与其声明位置有关,即从声明位置向后有效,可以在声明位置后的程序片、表达式中使用。(对) </p><p style="text-indent: 2em;";>13.contentType属性用来设置JSP页面的MIME类型和字符编码集,取值格式为"MIME类型"或"MIME类型;charset=字符编码集",response对象调用addHeader方法修改该属性的值。(错) </p><p style="text-indent: 2em;";>14.respone对象主要用于向客户端发送数据。(对 ) </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>8 </p><p style="text-indent: 2em;";>15.jsp:param动作标记不能单独使用,必须作为jsp:include、jsp:forward标记等的子标记使用,并为它们提供参数。(对) </p><p style="text-indent: 2em;";>16.同一个客户在同一个Web服务目录中的session对象是相同的,在不同的Web服务目录中的session对象是不相同的。(对) </p><p style="text-indent: 2em;";>17.session对象可以用来保存用户会话期间需要保存的数据信息。(对) </p><p style="text-indent: 2em;";>18.jsp:include动作标记与include指令标记包含文件的处理时间和方式不同。(对) </p><p style="text-indent: 2em;";>19.JavaBean的属性必须声明为private,方法必须声明为public访问类型。(对) </p><p style="text-indent: 2em;";>20.在JSP页面中调用的Bean类中如果有构造方法,必须是public类型且必有参数。(错) </p><p style="text-indent: 2em;";>21.Post属于表单的隐式提交信息方法。(对) </p><p style="text-indent: 2em;";>22.客户在某个页面修改session作用范围Bean的属性,在其他页面,该Bean的属性会发生同样的变化,不同客户之间的Bean也发生变化。(错) </p><p style="text-indent: 2em;";>23.修改了Bean的字节码后,要将新的字节码复制到对应的WEB-INFclasses目录中,重新启动tomcat服务器才能生效。(对) </p><p style="text-indent: 2em;";>24.使用格式<jsp:setProperty name="beanid" property="bean的属性" value="字符串" </p><p style="text-indent: 2em;";>/>给Bean的属性赋值,这个字符串会自动被转化为属性的数据类型。(对) </p><p style="text-indent: 2em;";>25.表单提交后,<jsp:setProperty>动作指令才会执行。(对) </p><p style="text-indent: 2em;";>26.当用户请求一个Servlet时,服务器都会创建Servlet实例响应,响应用户请求。(错) </p><p style="text-indent: 2em;";>27.XML文档中元素属性的属性值用双引号或单引号来界定。(对) </p><p style="text-indent: 2em;";>28.jsp:param动作标记不能单独使用,必须作为jsp:include、jsp:forward标记等的子标记使用,并为它们提供参数。(对) </p><p style="text-indent: 2em;";>29.当多个客户请求一个Servlet时,服务器为每一个客户启动一个进程而不是启动一个线程。(错) </p><p style="text-indent: 2em;";>30.用户开发一个Servlet时,必须直接或间接实现Servlet接口所定义的方法。(对) </p><p style="text-indent: 2em;";>31.doGet()和doPost()方法分别处理客户端GET和POST方法发送的请求。(对) </p><p style="text-indent: 2em;";>32.重定向功能是将用户从当前页面或Servlet定向到另一个JSP页面或Servlet。(对) </p><p style="text-indent: 2em;";>33.转发的功能是将用户对当前JSP页面或Servlet的请求转发给另一个JSP页面或Servlet。(对) </p><p style="text-indent: 2em;";>34.利用response对象的sendRedirect方法只能实现本网站内的页面跳转,但不能传递参数。(错) </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>9 </p><p style="text-indent: 2em;";>35.在MVC模式中,因为Servlet负责创建JavaBean,所以JavaBean的构造函数可以带有参数,除了保留get和set规则外,还可以有其他功能的函数。(对) </p><p style="text-indent: 2em;";>36.XML文档是一个层状结构的信息体,但是不能作为数据源提供数据。(错) </p><p style="text-indent: 2em;";>37.XML标记的名称可以由字母、数字、下划线、点或连字符组成,但必须是字母或下划线开头,标记不区分大小写。(错) </p><p style="text-indent: 2em;";>38.在XML声明中,xml,version,encoding,standalone都必须为小写英文字母。(对) </p><p style="text-indent: 2em;";>39.在XML中,注释的方法与HTML完全相同,用“<!--”和“-->”将注释文本括起来,并且注释可以嵌套。(错) </p><p style="text-indent: 2em;";>40.application对象对所有用户都是共享的,任何对它的操作都会影响到所有的用户。(对) </p><p style="text-indent: 2em;";>三、简答题:(每题10分 共30分) </p><p style="text-indent: 2em;";>1、根据下列表,设计一个javabean 表名:users </p><p style="text-indent: 2em;";>字段名 </p><p style="text-indent: 2em;";>name </p><p style="text-indent: 2em;";>salary </p><p style="text-indent: 2em;";>password </p><p style="text-indent: 2em;";>age </p><p style="text-indent: 2em;";>答: </p><p style="text-indent: 2em;";>public class Users { </p><p style="text-indent: 2em;";> private String name; </p><p style="text-indent: 2em;";> private double salary; </p><p style="text-indent: 2em;";> private String password; </p><p style="text-indent: 2em;";> private int age; </p><p style="text-indent: 2em;";> public int getAge() { </p><p style="text-indent: 2em;";> return age; </p><p style="text-indent: 2em;";> } </p><p style="text-indent: 2em;";> public void setAge(int age) { </p><p style="text-indent: 2em;";> = age; </p><p style="text-indent: 2em;";> } </p><p style="text-indent: 2em;";> public String getName() { </p><p style="text-indent: 2em;";> return name; </p><p style="text-indent: 2em;";> } </p><p style="text-indent: 2em;";> public void setName(String name) { </p><p style="text-indent: 2em;";> = name; </p><p style="text-indent: 2em;";> } </p><p style="text-indent: 2em;";> public String getPassword() { </p><p style="text-indent: 2em;";> return password; </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>10 </p><p style="text-indent: 2em;";>类型与长度 </p><p style="text-indent: 2em;";>Varchar(50) </p><p style="text-indent: 2em;";>float </p><p style="text-indent: 2em;";>Varchar(50) </p><p style="text-indent: 2em;";>int </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";>public void setPassword(String password) { </p><p style="text-indent: 2em;";> rd = password; </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";>public double getSalary() { </p><p style="text-indent: 2em;";> return salary; </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";>public void setSalary(double salary) { </p><p style="text-indent: 2em;";> = salary; </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";>2、设计一个页面,用于输入用户信息,表结构同上面题3.1,最后提交给 这个Servlet。 </p><p style="text-indent: 2em;";><form action="add" method="post" name="form1" > </p><p style="text-indent: 2em;";> 用户名:<input name="username" value="" > </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> 密码:<input name="password" value="" > </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> 薪水:<input name="salary" value="" > </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> 年龄:<input name="age" value="" > </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> <input type="submit" name="submit" value="保存" > </p><p style="text-indent: 2em;";></form> </p><p style="text-indent: 2em;";>3、设计一个Servlet,命名为,并在用户提交了页面后,获取页面上输入的数据,并存入上面设计的javabean对象中。 </p><p style="text-indent: 2em;";>String username = ameter("username"); </p><p style="text-indent: 2em;";> String password = ameter("password"); </p><p style="text-indent: 2em;";> String salary = ameter("salary"); </p><p style="text-indent: 2em;";> String age = ameter("age"); </p><p style="text-indent: 2em;";> Users userbean = new Users(); </p><p style="text-indent: 2em;";> e(username); </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>11 </p><p style="text-indent: 2em;";> sword(password); </p><p style="text-indent: 2em;";> ary(ouble("salary")); </p><p style="text-indent: 2em;";>(nt("age")); </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>选择题: </p><p style="text-indent: 2em;";>1 A 11 B 21 B 31 A 41 D </p><p style="text-indent: 2em;";>2 B 12 D 22 B 32 A 42 C </p><p style="text-indent: 2em;";>3 C 13 C 23 D 33 A 43 C </p><p style="text-indent: 2em;";>4 B 14 C 24 C 34 A 44 A </p><p style="text-indent: 2em;";>5 D 15 C 25 B 35 B 45 A </p><p style="text-indent: 2em;";>6 D 16 A 26 C 36 C 46 A </p><p style="text-indent: 2em;";>7 A 17 B 27 A 37 B 47 A </p><p style="text-indent: 2em;";>8 A 18 D 28 D 38 B 48 C </p><p style="text-indent: 2em;";>9 C 19 A 29 D 39 C 49 C </p><p style="text-indent: 2em;";>10 A 20 C 30 B 40 B 50 A </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>判断题: </p><p style="text-indent: 2em;";>1 </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";>11 </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";>21 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>31 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>2 </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";>12 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>22 </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";>32 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>3 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>13 </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";>23 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>33 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>4 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>14 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>24 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>34 </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>5 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>15 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>25 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>35 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>6 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>16 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>26 </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";>36 </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>7 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>17 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>27 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>37 </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>8 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>18 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>28 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>38 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>9 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>19 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>29 </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";>39 </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>10 </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";>20 </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";>30 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>40 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>12 </p><p><p><h2></h2></p></img></p></div></article></div><div class="fzithome-com info"><div><span>本文发布于:2024-01-15,感谢您对本站的认可!</span></div><div><span>本文链接:</span><a href="https://www.fzithome.com/xitong/1705323599a190130.html" title="11-12-2 JSP程序设计 期末试卷(B)答案">https://www.fzithome.com/xitong/1705323599a190130.html</a></div><div><span>版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。</span></div></div><span class="tag"><i class="iconfont icon-discount" style="font-size:12px;font-weight:bold;opacity:.7;">本文标签:</i><a href="/tag/158.html" target="_blank">方法</a><a href="/tag/421.html" target="_blank">页面</a><a href="/tag/211.html" target="_blank">属性</a><a href="/tag/906.html" target="_blank">标记</a><a href="/tag/480.html" target="_blank">客户</a></span></div><div class="fzithome-com post_comments" id="comments"><div id="comt-respond" class="commentpost"><h4>发布评论 <span><a rel="nofollow" id="cancel-reply" href="#comment" style="display:none;"><small>取消回复</small></a></span></h4><form action="/comment/create/190130.html?safe_token=HMxbJui0YAdshGbenkl_2FUxglXnasoW84r8sEBEMFJlUuny6Y1JxVMrxBWohAqqc901sRluDSB_2FXIHuBQDsfbXQ_3D_3D" method="post" name="saypl" id="frmSumbit"><input type="hidden" name="doctype" value="1" /><input type="hidden" name="quotepid" value="0" /><div id="comment-tools"><div class="fzithome-com tools_text"><textarea placeholder="请在这里留言..." name="message" id="txaArticle" class="text input-block-level comt-area" cols="50" rows="4" tabindex="5"></textarea></div></div><div class="fzithome-com psumbit"><input name="sumbit" type="submit" tabindex="6" value="发布" class="button" /></div></form></div><div class="fzithome-com commentlist"><div class="fzithome-com comment-tab"><div class="fzithome-com come-comt">评论列表<span id="comment_count">(有<span id="infocommentnumarea" style="color:#c81111">0</span>条评论)</span></div></div><ul class="diy-comment"></ul></div></div></div><div class="fzithome-com mainr"><div class="widget widget_previous"><h4 class="bar">最近发表</h4><ul><li><a href="/xitong/1700736886a2.html"title='arcgis打开mdb数据库_操作方法:在ArcGIS中连接至MicrosoftAcces' aria-label='arcgis打开mdb数据库_操作方法:在ArcGIS中连接至MicrosoftAcces'>arcgis打开mdb数据库_操作方法:在ArcGIS中连接至MicrosoftAcces</a></li><li><a href="/xitong/1700737632a39.html"title='mdb文件取消隐藏_如何关闭Windows10系统盘中的休眠文件可以节省空间' aria-label='mdb文件取消隐藏_如何关闭Windows10系统盘中的休眠文件可以节省空间'>mdb文件取消隐藏_如何关闭Windows10系统盘中的休眠文件可以节省空间</a></li><li><a href="/xitong/1700739658a128.html"title='SAS数据的导出和导入' aria-label='SAS数据的导出和导入'>SAS数据的导出和导入</a></li><li><a href="/xitong/1700740377a157.html"title='abaqus生成odb文件_一小时内学会Abaqus脚本编程秘籍' aria-label='abaqus生成odb文件_一小时内学会Abaqus脚本编程秘籍'>abaqus生成odb文件_一小时内学会Abaqus脚本编程秘籍</a></li><li><a href="/xitong/1700740670a173.html"title='如何禁止产生Thumbs.db和删除的方法' aria-label='如何禁止产生Thumbs.db和删除的方法'>如何禁止产生Thumbs.db和删除的方法</a></li><li><a href="/xitong/1700740907a185.html"title='Access共享数据库(MDB)' aria-label='Access共享数据库(MDB)'>Access共享数据库(MDB)</a></li><li><a href="/xitong/1700745775a411.html"title='Mac如何一键彻底删除文件' aria-label='Mac如何一键彻底删除文件'>Mac如何一键彻底删除文件</a></li><li><a href="/xitong/1700746433a447.html"title='如何彻底清除天正建筑的文件' aria-label='如何彻底清除天正建筑的文件'>如何彻底清除天正建筑的文件</a></li><li><a href="/xitong/1700747063a477.html"title='本月热点' aria-label='本月热点'>本月热点</a></li><li><a href="/xitong/1700747656a506.html"title='当前医学数据库发展的若干热点' aria-label='当前医学数据库发展的若干热点'>当前医学数据库发展的若干热点</a></li><li><a href="/xitong/1700752468a739.html"title='药厂新建项目工程招标(专业)标段划分的咨询意见' aria-label='药厂新建项目工程招标(专业)标段划分的咨询意见'>药厂新建项目工程招标(专业)标段划分的咨询意见</a></li><li><a href="/xitong/1700752533a741.html"title='运营工作计划表五篇' aria-label='运营工作计划表五篇'>运营工作计划表五篇</a></li><li><a href="/xitong/1700752831a758.html"title='如何写新闻评论' aria-label='如何写新闻评论'>如何写新闻评论</a></li><li><a href="/xitong/1700753233a779.html"title='2021年新闻传播学八大刊研究热点盘点' aria-label='2021年新闻传播学八大刊研究热点盘点'>2021年新闻传播学八大刊研究热点盘点</a></li><li><a href="/xitong/1700753905a813.html"title='皖西学院校园规划及科技楼设计中标!二手房价最高10196元㎡!' aria-label='皖西学院校园规划及科技楼设计中标!二手房价最高10196元㎡!'>皖西学院校园规划及科技楼设计中标!二手房价最高10196元㎡!</a></li><li><a href="/xitong/1700761995a1213.html"title='给笔记本安装上一键系统还原功能来还原系统' aria-label='给笔记本安装上一键系统还原功能来还原系统'>给笔记本安装上一键系统还原功能来还原系统</a></li><li><a href="/xitong/1700762895a1263.html"title='Symantec Ghost概述' aria-label='Symantec Ghost概述'>Symantec Ghost概述</a></li><li><a href="/xitong/1700763074a1270.html"title='ghost的参数' aria-label='ghost的参数'>ghost的参数</a></li><li><a href="/xitong/1700765540a1411.html"title='智能风扇设置' aria-label='智能风扇设置'>智能风扇设置</a></li><li><a href="/xitong/1700767186a1505.html"title='电脑声音不正常的各种故障排除方法大全' aria-label='电脑声音不正常的各种故障排除方法大全'>电脑声音不正常的各种故障排除方法大全</a></li></ul></div><section id="aside_about" class="widget widget_aside_about sb br mb"><div class="avatar"><img class="img" src="/view/template/mitiqin/img/tx.jpg" alt="福州电脑网_福州电脑维修_福州电脑之家_福州iThome"/></div><div class="wrap pd"><p class="title">福州电脑网_福州电脑维修_福州电脑之家_福州iThome</p><p class="info">福州电脑维修网(fzithome.com)专业的电脑维修,笔记本维修,上门维修各种电脑,笔记本,平板等,快速上门.电脑知识频道内容覆盖:计算机资讯,电脑基础应用知识,各种电脑故障维修学习,电脑外设产品维修维护,病毒,软件,硬件,常识.</p><ul class="ul clearfix"></ul></div></section><div class="fzithome-com clear"></div><div class="fzithome-com widgets"><h4 class="bar">相关推荐</h4><div class="fzithome-com hot-post"><ul class="clearfix"><li><a href="/xitong/1772613402a2697917.html"title='Qt新手指南:QListWidget的右键菜单定制' aria-label='Qt新手指南:QListWidget的右键菜单定制'><span class="sptit">Qt新手指南:QListWidget的右键菜单定制</span></a></li><li><a href="/biancheng/1772615176a2697937.html"title='一文教你SWF、Flash用户定制化电脑配置' aria-label='一文教你SWF、Flash用户定制化电脑配置'><span class="sptit">一文教你SWF、Flash用户定制化电脑配置</span></a></li><li><a href="/xitong/1772642574a2698241.html"title='隐藏文件不再神秘!简单步骤教你显示隐藏文件夹,提升工作效率' aria-label='隐藏文件不再神秘!简单步骤教你显示隐藏文件夹,提升工作效率'><span class="sptit">隐藏文件不再神秘!简单步骤教你显示隐藏文件夹,提升工作效率</span></a></li><li><a href="/xitong/1772660488a2698423.html"title='解锁Adobe Flash Player的SWF文件新能力' aria-label='解锁Adobe Flash Player的SWF文件新能力'><span class="sptit">解锁Adobe Flash Player的SWF文件新能力</span></a></li><li><a href="/biancheng/1772668880a2698512.html"title='VSCode自定义体验:如何设置新建文件夹快捷键及条件' aria-label='VSCode自定义体验:如何设置新建文件夹快捷键及条件'><span class="sptit">VSCode自定义体验:如何设置新建文件夹快捷键及条件</span></a></li><li><a href="/biancheng/1773205411a2698985.html"title='文件属性大揭秘:SWF文件背后的Adobe Flash Player魔法' aria-label='文件属性大揭秘:SWF文件背后的Adobe Flash Player魔法'><span class="sptit">文件属性大揭秘:SWF文件背后的Adobe Flash Player魔法</span></a></li><li><a href="/xitong/1773213798a2699082.html"title='惊险时刻:揭秘如何快速恢复Windows系统的隐藏文件!' aria-label='惊险时刻:揭秘如何快速恢复Windows系统的隐藏文件!'><span class="sptit">惊险时刻:揭秘如何快速恢复Windows系统的隐藏文件!</span></a></li><li><a href="/biancheng/1773609978a2703213.html"title='Windows 11安装秘籍:让你快速上手的绝招' aria-label='Windows 11安装秘籍:让你快速上手的绝招'><span class="sptit">Windows 11安装秘籍:让你快速上手的绝招</span></a></li><li><a href="/xitong/1773643803a2703601.html"title='Win8应用中的本地程序设置:读取与保存技巧' aria-label='Win8应用中的本地程序设置:读取与保存技巧'><span class="sptit">Win8应用中的本地程序设置:读取与保存技巧</span></a></li><li><a href="/biancheng/1773679686a2704013.html"title='电脑垃圾清理全攻略:SWF、Flash Center、Adobe Flash Player的彻底清理流程' aria-label='电脑垃圾清理全攻略:SWF、Flash Center、Adobe Flash Player的彻底清理流程'><span class="sptit">电脑垃圾清理全攻略:SWF、Flash Center、Adobe Flash Player的彻底清理流程</span></a></li><li><a href="/biancheng/1773753497a2704612.html"title='vcruntime140_1.dll是什么东东?vcruntime140_1.dll缺失的8个解决方法_vcruntime140-1.dll' aria-label='vcruntime140_1.dll是什么东东?vcruntime140_1.dll缺失的8个解决方法_vcruntime140-1.dll'><span class="sptit">vcruntime140_1.dll是什么东东?vcruntime140_1.dll缺失的8个解决方法_vcruntime140-1.dll</span></a></li><li><a href="/biancheng/1773771545a2704808.html"title='Winsock LSP导致无法上网(传说中的“浏览器劫持”)' aria-label='Winsock LSP导致无法上网(传说中的“浏览器劫持”)'><span class="sptit">Winsock LSP导致无法上网(传说中的“浏览器劫持”)</span></a></li><li><a href="/biancheng/1773809064a2705213.html"title='如何让BACK键变为HOME键_android 屏蔽返回键改为home' aria-label='如何让BACK键变为HOME键_android 屏蔽返回键改为home'><span class="sptit">如何让BACK键变为HOME键_android 屏蔽返回键改为home</span></a></li><li><a href="/biancheng/1773810800a2705233.html"title='笔记本只能指纹打开,密码忘记的解决办法_win10用指纹登录后,忘记登录密码怎么办' aria-label='笔记本只能指纹打开,密码忘记的解决办法_win10用指纹登录后,忘记登录密码怎么办'><span class="sptit">笔记本只能指纹打开,密码忘记的解决办法_win10用指纹登录后,忘记登录密码怎么办</span></a></li><li><a href="/biancheng/1773870028a2705891.html"title='破解电脑开机密码方法' aria-label='破解电脑开机密码方法'><span class="sptit">破解电脑开机密码方法</span></a></li><li><a href="/xitong/1773998360a2707332.html"title='AI算法工程师 | 02人工智能基础-Python基础(四)os模块_打开读取文件_人工智能需要用到文件读取' aria-label='AI算法工程师 | 02人工智能基础-Python基础(四)os模块_打开读取文件_人工智能需要用到文件读取'><span class="sptit">AI算法工程师 | 02人工智能基础-Python基础(四)os模块_打开读取文件_人工智能需要用到文件读取</span></a></li><li><a href="/xitong/1774292922a2709188.html"title='解决桌面图标异常方法' aria-label='解决桌面图标异常方法'><span class="sptit">解决桌面图标异常方法</span></a></li><li><a href="/biancheng/1774293306a2709193.html"title='Windows XP 桌面图标阴影设置' aria-label='Windows XP 桌面图标阴影设置'><span class="sptit">Windows XP 桌面图标阴影设置</span></a></li><li><a href="/xitong/1774358991a2709925.html"title='网站打不开怎么办,收藏以备不时之需_有的网站打不开怎么设置打开' aria-label='网站打不开怎么办,收藏以备不时之需_有的网站打不开怎么设置打开'><span class="sptit">网站打不开怎么办,收藏以备不时之需_有的网站打不开怎么设置打开</span></a></li><li><a href="/xitong/1774508191a2711037.html"title='从头到尾解析192.168.1.1:家庭网络设置指南' aria-label='从头到尾解析192.168.1.1:家庭网络设置指南'><span class="sptit">从头到尾解析192.168.1.1:家庭网络设置指南</span></a></li></ul></div></div><div class="fzithome-com clear"></div><div class="widget widget_tags"><h4 class="bar">标签列表</h4><ul><li class="submenu"><a target="_blank" href="/tag/244952.html">路由器桥</a></li><li class="submenu"><a target="_blank" href="/tag/244927.html">更新驱动</a></li><li class="submenu"><a target="_blank" href="/tag/244914.html">还有必要</a></li><li class="submenu"><a target="_blank" href="/tag/244895.html">如何凭借</a></li><li class="submenu"><a target="_blank" href="/tag/244892.html">的外接程</a></li><li class="submenu"><a target="_blank" href="/tag/244876.html">这种功能</a></li><li class="submenu"><a target="_blank" href="/tag/244853.html">问题的实</a></li><li class="submenu"><a target="_blank" href="/tag/244848.html">利用高级</a></li><li class="submenu"><a target="_blank" href="/tag/244829.html">窗体顶端</a></li><li class="submenu"><a target="_blank" href="/tag/244802.html">中的程序</a></li><li class="submenu"><a target="_blank" href="/tag/244797.html">来启动</a></li><li class="submenu"><a target="_blank" href="/tag/244765.html">单击选中</a></li><li class="submenu"><a target="_blank" href="/tag/244724.html">默认禁止</a></li><li class="submenu"><a target="_blank" href="/tag/244693.html">入不支持</a></li><li class="submenu"><a target="_blank" href="/tag/244686.html">硬盘回收</a></li><li class="submenu"><a target="_blank" href="/tag/244600.html">个指标</a></li><li class="submenu"><a target="_blank" href="/tag/244582.html">海外抖音</a></li><li class="submenu"><a target="_blank" href="/tag/244575.html">返回值为</a></li><li class="submenu"><a target="_blank" href="/tag/244573.html">会自动获</a></li><li class="submenu"><a target="_blank" href="/tag/244513.html">全区全服</a></li></ul></div><div class="fzithome-com clear"></div></div></div><footer id="footer"><div class="footer container-w cl"><div class="fnav"></div><span class="copy"> CopyRight © 2022 All Rights Reserved <a href="/" title="福州电脑网_福州电脑维修_福州电脑之家_福州iThome" target="_blank">福州电脑网_福州电脑维修_福州电脑之家_福州iThome</a></span> 备案号:<a target="_blank" rel="nofollow" href="https://beian.miit.gov.cn/" style="font-size: 12px;">豫ICP备2022026798号-13</a></div></footer><script src="/view/template/mitiqin/js/common.min.js?2.3.0"></script><script src="/view/js/xiuno.js"></script><script src="/view/template/mitiqin/js/app.js?2.3.0"></script><div id="gotop"><div style="display: none; margin-bottom:5px;" id="goTopBtn"><a title="返回顶部" class="gotopa"><span class="iconfont icon-rocket-fill"></span></a></div></div></body></html>