如何将变量值从一个文件发送到另一个文件?

时间:2015-08-27 18:08:56

标签: java html jsp

我有A.jsp文件,其中我有int变量。现在我想在B.jsp和C.jsp文件中使用这个变量的值。我们怎么做?

编辑:所以在A.jsp中我们可以声明request.getSession().setAttribute("nameOfVariable", variable); ,在B.jsp中我们可以声明request.getSession().getAttribute("nameOfVariable");

1 个答案:

答案 0 :(得分:4)

使用RequestDispatcher方法获取属性:

request.setAttribute("list", fooList);
RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("myJsp.jsp");
dispatcher.forward(request, response);