在servlet1中的doGet和doPost方法中只有如下代码:reques...2 中使用()可以把属性jb的值取出来。
举一反三
- 在servlet1中的doGet和doPost方法中只有如下代码: request .setAttribute("jb","aPtech"); response .sendRedirect("http://localhost:8080/servlet/Servlet2"); 那么在Servlet2 中使用( )可以把属性jb的值取出来。
- 在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: 取不出来
- 给定一个 Servlet 的doGet方法中的代码片段,如下: request.setAttribute(“name”,”zhang”); response.sendRedirect(“http://localhost:8080/servlet/MyServlt”); 那么在 MyServlet中可以使用方法把属性 name的值取出来
- 给定一个 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: 无法取出来
- 1、( )不是Servlet中使用的方法。 A: doGet() B: doPost() C: service() D: close()