如何从Servlet发送参数

问题描述 投票:8回答:3

我正在尝试使用RequestDispatcher从Servlet发送参数。

这是我的servlet代码:

protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {

 String station = request.getParameter("station");
 String insDate = request.getParameter("insDate");

 //test line
 String test = "/response2.jsp?myStation=5";

 RequestDispatcher rd;
 if (station.isEmpty()) {
     rd = getServletContext().getRequestDispatcher("/response1.jsp");

 } else {
     rd = getServletContext().getRequestDispatcher(test);
 }

 rd.forward(request, response);

} 

这是我的jsp,带有用于读取值的代码-但是它显示为null。

    <h1>response 2</h1>
    <p>
        <%=request.getAttribute("myStation")  %>
    </p>

感谢您的任何建议。更绿

java jsp servlets
3个回答
15
投票

在您的servlet中,以以下方式使用request.setAttribute

request.setAttribute("myStation", value);

值恰好是您以后要阅读的对象。

[稍后使用request.getAttribute as将其提取到另一个servlet / jsp中>

String value = (String)request.getAttribute("myStation")

<%= request.getAttribute("myStation")%>

请注意,get / setAttribute的使用范围本质上是受限制的-在请求之间重置属性。如果打算将值存储更长的时间,则应使用会话或应用程序上下文,或者最好使用数据库。

属性与参数不同,因为客户端从不设置属性。开发人员或多或少使用属性将状态从一个servlet / JSP转移到另一个。因此,您应该使用getParameter(没有setParameter)从请求中提取数据,如果需要,请使用setAttribute设置属性,使用RequestDispatcher在内部转发请求,并使用getAttribute提取属性。


3
投票

使用getParameter()。属性已设置并在应用程序内部读取。


2
投票

在您的代码中,字符串测试=“ /response2.jsp?myStation=5”;

© www.soinside.com 2019 - 2024. All rights reserved.