在HttpServletRequest接口中用于获取请求行中参数值(?号后面的内容)的方法是()
A. getMethod()
B. getRequestURI()
C. getParameter()
D. getProtocol()
访问如下的URL地址:
A. tp://www.itcast.cn/HelloServlet?name=youjun
B. HelloServlet用getParameterValues (“name”)方法取到的值是()
C. youjun
D. itcast
E. {“youjun”, “itcast”}
F. 30
HttpServletResponse接口中表示状态码404,也就是没有找到资源的常量是()
A. SC_FORBIDDEN
B. SC_OK
C. SC_NOT_FOUND
D. SC_CONFLICT
在HttpServletRequest接口中,用于获取Servlet映射路径的方法是()
A. getMethod()
B. getPathInfo()
C.getContextPath()
D. getServletPath ()