單項(xiàng)選擇題在J2EE中,對于HttpServlet類的描述,錯(cuò)誤的是()。

A.我們自己編寫的Servlet繼承了HttpServlet類,一定需覆蓋doPost或者doGet
B.Httpservlet類擴(kuò)展了GenericServlet類,實(shí)現(xiàn)了GenericServlet類的抽象方法
C.Httpservlet類中處理客戶請求和響應(yīng)時(shí)所使用的兩個(gè)接口是:HttpServletRequest和HttpServletResponse
D.我們自己編寫的servlet繼承了Httpservlet類,一般只需要覆蓋doPost或doGet方法,不必覆蓋servive()方法,因?yàn)橐粋€(gè)service()方法會(huì)調(diào)用doPost或者doGet方法


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題Tomcat的端口號(hào)可以在()文件中修改。

A.server.xml
B.web.xml
C.tomcat.xml
D.不能改

2.單項(xiàng)選擇題使用GET方式提交數(shù)據(jù),接收數(shù)據(jù)時(shí),處理中文最直接有效方式為()。

A.request.setCharacterEncoding("utf-8")
B.response.setContentType("text/html;charset=utf-8")
C.Stringname=newString(request.getParameter("name").getBytes("ISO-8859-1"),"gbk")
D.response.setCharacterEncoding("gbk")

3.單項(xiàng)選擇題編寫Servlet的doPost方法時(shí),需要拋出異常為()。

A.ServletException,IOException
B.ServletException,RemoteException
C.HttpServletException,IOException
D.HttpServletException,RemoteException

4.單項(xiàng)選擇題http是一個(gè)()協(xié)議。

A.無狀態(tài)
B.有狀態(tài)
C.狀態(tài)良好的
D.局域網(wǎng)

5.單項(xiàng)選擇題在JSP頁面中,類型為HttpServletResponse的內(nèi)置對象是()。

A.out
B.response
C.request
D.config