以下哪个方法是Request对象用来获取前端页面表单数据的?
A: getParameter(String s);
B: getValue(String s)
C: getParameterNames(String s)
D: getParameterValue(String s)
A: getParameter(String s);
B: getValue(String s)
C: getParameterNames(String s)
D: getParameterValue(String s)
举一反三
- 下面request对象的哪个方法可以获取页面请求中的复选框的值? A: String getParameter(String name) B: String[] getParameter(String name) C: String getParameterValues(String name) D: String[] getParameterValues(String name)
- Java中,以下代码会报错会报错的两项是() A: String s = "Gone with the wind"; String t = " good "; String k = s + t; B: String s = "Gone with the wind"; String t; t = s[3] + "one"; C: String s = "Gone with the wind"; String standard = s.toUpperCase(); D: String s = "home directory"; String t = s - "directory";
- 下面的哪些程序片断可能导致错误() A: String s = "Gone with the wind"; String t = " good "; String k = s + t; B: String s = "Gone with the wind"; String t; t = s[3] + "one"; C: String s = "Gone with the wind"; String standard = s.toUpperCase(); D: String s = "home directory"; String t = s - "directory"
- 为了从HTML文件中获取参数,在Applet程序中应该编写的代码是( )。 A.在start()方法中加入语句String s=getParameter("buttonLabel"); B.在int()方法中加入语句String s=Parameter("buttonLabel"); C.在int()方法中加入语句String s=getParameter("BUTTONLABEL"); D.在start()方法中加入语句String s=getParameter("BUTIONLABEL");
- 下面的哪些程序片断可能导致错误?( ) A: String s=”Hello”; String t=,,World"; String k=s+t; B: String s=,,Hello";String t;t=s[3]+"one"; C: String s="Hello,,;String standard = s.tollpperCase(); D: String s="Hello World”;String t=s-”World”;