單項選擇題在JAVA EE中,request對象的()方法可以獲取頁面請求中一個表單組件對應(yīng)多個值時的用戶的請求數(shù)據(jù)。

A.String getParameter(String name)
B.String[] getParameter(String name)
C.String getParameterValuses(String name)
D.String[] getParameterValues(String name)


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題在JAVA EE中,使用Servlet過濾器時,可以在web.xml文件的()元素中包括〈init-param〉元素。

A.〈filter〉
B.〈filter-mapping〉
C.〈filter-name〉
D.〈filter-class〉

2.單項選擇題在JAVAEE中,在一個JSP文件中,有表達(dá)式〈%=2+3%〉,它將輸出()。

A.2+3
B.5
C.23
D.不會輸出,因為表達(dá)式是錯誤的

3.單項選擇題在JSP中,()動作用于將請求轉(zhuǎn)發(fā)給其他JSP頁面。

A.forward
B.include
C.useBean
D.setProperty

4.單項選擇題在Servlet里,能正確獲取session的語句是()。

A.HttpSession session=request.getSession(true)
B.HttpSession session=request.getHttpSession(true)
C.HttpSession session=response.getSession(true)
D.HttpSession session=response.getHttpSession(true)

5.單項選擇題要設(shè)置某個JSP頁面為錯誤處理頁面,以下page指令正確的是()。

A.〈%@ page errorPage="true"%〉
B.〈%@ page isErrorPage="true"%〉
C.〈%@ page extends="javax.servlet.jsp.JspErrorPage"%〉
D.〈%@ page info="error"%〉