JSTL判断集合的长度

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>

显示一个集合的长度 ${fn:length(rowList)}
判断一个集合的长度后显示集合的内容
${rowList[2]}

你可能感兴趣的:(JSTL判断集合的长度)