通过request.setAttribute(String,Object) 这里Object可以放 集合 servlet通过请求转发到jsp jsp 通过request.getAttribute(String)获取(需要强制转为你的集合类型) 或者使用el/jstl表达式来获取并显示。requestScope对象好像是
将list 放都request.getSession.setArribute(“key”,list);
jsp页面导入jstl 包:<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>${item[0]} ${item[1]} ${item[....]}