gpt4 book ai didi

java - 如何将 ArrayList 从 Servlet 传递到 JSP 页面?

转载 作者:行者123 更新时间:2023-12-01 09:46:04 26 4
gpt4 key购买 nike

这是我的问题,我需要将 arrayList 从 servlet 传递到 JSP

protected void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException {
String text = request.getParameter("text");
ServletContext context = getServletContext();
context.log(text);
StringProcess(text,context);
response.sendRedirect("sucess.jsp");

}

最佳答案

您可以通过调用 setAttribute() 方法将该数组列表放入 session 或请求,如下所示:

request.setAttribute("arrName", arrObj);

或者

session.setAttribute("arrName", arrObj);

在 jsp 页面 scriptlet 中,您只需调用 request.getAttribute("arrName")session.getAttribute("arrName") 即可获取该数组。还要注意类型转换。

如果您使用核心 JSTL,您可以像这样循环遍历数组:

<c:forEach items="${arrName}" var="tmp">
...
</c:forEach>

关于java - 如何将 ArrayList 从 Servlet 传递到 JSP 页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38021162/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com