在servlet中怎么传集合显示在jsp页面

2025-01-26 14:10:03
推荐回答(2个)
回答1:

通过request.setAttribute(String,Object) 这里Object可以放 集合 servlet通过请求转发到jsp jsp 通过request.getAttribute(String)获取(需要强制转为你的集合类型) 或者使用el/jstl表达式来获取并显示。requestScope对象好像是

回答2:

将list 放都request.getSession.setArribute(“key”,list);
jsp页面导入jstl 包:<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>


${item[0]}
${item[1]}
${item[....]}