给定一个 Servlet 的doGet方法中的代码片段,如下:
A: quest.setAttribute(“name”,”zhang”);
B: sponse.sendRedirect(“http://localhost:8080/servlet/MyServlt”);
C: 在 MyServlet中可以使用()方法把属性 name的值取出来。
D: Stringstr=request.getAttribute(“name”);
E: Stringstr=(String)request.getAttribute(“name”);
F: Objectstr=request.getAttribute(“name”);
G: 无法取出来
A: quest.setAttribute(“name”,”zhang”);
B: sponse.sendRedirect(“http://localhost:8080/servlet/MyServlt”);
C: 在 MyServlet中可以使用()方法把属性 name的值取出来。
D: Stringstr=request.getAttribute(“name”);
E: Stringstr=(String)request.getAttribute(“name”);
F: Objectstr=request.getAttribute(“name”);
G: 无法取出来
举一反三
- 给定一个 Servlet 的doGet方法中的代码片段,如下: request.setAttribute(“name”,”zhang”); response.sendRedirect(“http://localhost:8080/servlet/MyServlt”); 那么在 MyServlet中可以使用方法把属性 name的值取出来
- 在servlet中的doGet和doPost方法中只有如下代码: () A: quest.setAttribute(”jb”,”aPtech”); B: sponse.sendRedirect(”http://localhost:8080/servlet/Servlet2”); C: 在Servlet2 中使用()可以把属性jb的值取出来 D: String str = request.getAttribute(“jb”); E: String sir =(String)request.getAttribute(“jb”); F: Object str = request.getAttribute(“jb“); G: 取不出来
- 在servlet1中的doGet和doPost方法中只有如下代码: request .setAttribute("jb","aPtech"); response .sendRedirect("http://localhost:8080/servlet/Servlet2"); 那么在Servlet2 中使用( )可以把属性jb的值取出来。
- 下列选择中属于request对象常用方法的有() A: getAttribute(String name) B: getHeader(String name) C: getParameter(String name) D: getCookies()
- 下面哪个方法用于从ServletContent中检索属性值?() A: String getAttribute(int index ) B: String getObject(int index ) C: Object getAttribute(int index ) D: Object getObject(int index ) E: Object getAttribute(String name ) F: String getAttribute(String name )