网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

如果要取得ServletContext初始参数,则可以执行()方法。

  • A、getContextParameter()
  • B、getParameter()
  • C、getInitParameter()
  • D、getAttribute()

参考答案

更多 “如果要取得ServletContext初始参数,则可以执行()方法。A、getContextParameter()B、getParameter()C、getInitParameter()D、getAttribute()” 相关考题
考题 从 HTTP 请求中,获得请求参数,应该调用()方法。 A.调用 HttpServletRequest 对象的 getAttribute()方法B.调用 ServletContext 对象的 getAttribute()方法C.调用 HttpServletRequest 对象的 getParameter()方法

考题 下面哪项不是request对象的方法() A、getAttribute(Stringstr)B、getCookies()C、getParameter(Stringstr)D、sendRedirect(Stringurl)

考题 下面哪项不是application对象的方法()A、getAttribute(Stringname)B、getCookies()C、getInitParameter()D、setAttribute(Stringname,Objectvalue)

考题 可以取得用交提交的参数的所有记录值的方法是()A、getParameter()B、getAttribute()C、getParameterValues()D、getSession()

考题 InaJSP-centricwebapplication,youneedtocreateacatalogbrowsingJSPpage.ThecatalogisstoredasaListobjectinthecatalogattributeofthewebapp’sServletContextobject.Whichscriptletcodesnippetgivesyouaccesstothecatalogobject?()A.%Listcatalog=config.getAttribute(catalog);%B.%Listcatalog=context.getAttribute(catalog);%C.%Listcatalog=application.getAttribute(catalog);%D.%Listcatalog=servletContext.getAttribute(catalog);%

考题 从HTTP请求中,获得请求参数,应该调用() A.request对象的getAttribute()方法B.request对象的getParameter()方法C.session对象的getAttribute()方法D.session对象的getParameter()方法

考题 request.getAttribute() 和 request.getParameter() 有何区别?

考题 FilterConfig的哪个方法可以返回init参数的名称?()A、getServletContext()B、getInitParameter(Stringname)C、getFilterName()D、getInitParameterNames()

考题 从HTTP请求中,获得请求参数,应该调用()A、request对象的getAttribute()方法B、request对象的getParameter()方法C、session对象的getAttribute()方法D、session对象的getParameter()方法

考题 关于过滤器的描述,以下哪一个正确()。A、Filter接口定义了init()、service()与destroy()方法B、会传入ServletRequest与ServletResponse至FilterC、要执行下一个过滤器,必须执行FilterChaing的next()方法D、如果要取得初始参数,要使用FilterConfig对象内容

考题 ServletContext接口的()方法用于将对象保存到Servlet上下文中。A、getServetContext()B、getContext()C、getAttribute()D、setAttribute()

考题 HttpServletRequest对象的()方法能够获取一个表单参数的值。A、getQuaryString()B、getPathInfo()C、getParameter()D、getAttribute()

考题 如何获取ServletContext设置的参数值()。A、context.getParameter()B、context.getInitParameter()C、context.getAttribute()D、context.getRequestDispatcher()

考题 In a JSP-centric web application, you need to create a catalog browsing JSP page. The catalog is stored asa List object in the catalog attribute of the webapp’s ServletContext object.  Which scriptlet code snippetgives you access to the catalog object?()A、% List catalog = config.getAttribute("catalog"); %B、% List catalog = context.getAttribute("catalog"); %C、% List catalog = application.getAttribute("catalog"); %D、% List catalog = servletContext.getAttribute("catalog"); %

考题 在表单提交的数据中,如果变量的值有多个,这时应调用()方法。A、 getParameterValues()B、 getParameter()C、 getParameterNames()D、 getAttribute()

考题 如何利用ServletContext和ServletConfig对象获得初始化参数。

考题 下列方法哪2个可以用来获取用户提交的表单(Form)参数()A、HttpServletRequest. getParameter(String)B、HttpServletRequest.getAttribute(String)C、HttpServletRequest.getParameterNames()D、HttpServletRequest.getAttributeNames()

考题 ServletContext定义与属性相关的方法是哪三个()。A、getAttribute()B、setAttribute()C、deleteAttribute()D、removeAttribute()

考题 JSP从HTML表单中获得用户输入的正确语句为()。A、Request.getParameter(“ID”)B、Reponse.getParameter(“ID”)C、Request.getAttribute(“ID”)D、Reponse.getAttribute(“ID”)

考题 从HTTP请求中,获得请求参数,应该调用哪个方法?()A、调用HttpServletRequest对象的getAttribute()方法B、调用ServletContext对象的getAttribute()方法C、调用HttpServletRequest对象的getParameter()方法

考题 单选题从HTTP请求中,获得请求参数,应该调用()A request对象的getAttribute()方法B request对象的getParameter()方法C session对象的getAttribute()方法D session对象的getParameter()方法

考题 单选题从HTTP请求中,获得请求参数,应该调用哪个方法?()A 调用HttpServletRequest对象的getAttribute()方法B 调用ServletContext对象的getAttribute()方法C 调用HttpServletRequest对象的getParameter()方法

考题 单选题在表单提交的数据中,如果变量的值有多个,这时应调用()方法。A  getParameterValues()B  getParameter()C  getParameterNames()D  getAttribute()

考题 单选题JSP从HTML表单中获得用户输入的正确语句为()。A Request.getParameter(“ID”)B Reponse.getParameter(“ID”)C Request.getAttribute(“ID”)D Reponse.getAttribute(“ID”)

考题 多选题下列方法哪2个可以用来获取用户提交的表单(Form)参数()AHttpServletRequest. getParameter(String)BHttpServletRequest.getAttribute(String)CHttpServletRequest.getParameterNames()DHttpServletRequest.getAttributeNames()

考题 单选题如果要取得ServletContext初始参数,则可以执行()方法。A getContextParameter()B getParameter()C getInitParameter()D getAttribute()

考题 单选题Which retrieves the value associated with “foo” from within an HttpServlet?()A  String value = getServletConfig( ).getParameter(“foo”);B  String value = getServletContext( ).getAttribute(“foo”);C  Object value = getServletContext( ).getInitParameter(“foo”);D  String value = getServletContext( ).getInitParameter(“foo”)