如何在JSP页面使用JSTL标签获取List的元素个数

时间:2022-11-16 15:00:18

1. 工程中要有:jstl.jar 和 standard.jar 这两个jar包。

2. 页面中导入JSTL core和JSTL functions标签库:

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

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

3 . 例如,你要测试一个List变量elements中的元素个数是否为0,就可以像下边这样:

<c:when test="${fn:length(m_messages.elements)>0}">

......

</c:when>

<c:otherwise>
.....

</c:otherwise>