JSTL empty判断空值

[url]http://sphinx-yong.iteye.com/blog/1483188[/url]
<%
String str1=null;
String str2="";
String str3="aa";
ArrayList al1=null;
ArrayList al2=new ArrayList();
ArrayList al3=new ArrayList();
al3.add("aa");

request.setAttribute("str1", str1);
request.setAttribute("str2", str2);
request.setAttribute("str3", str3);
request.setAttribute("al1", al1);
request.setAttribute("al2", al2);
request.setAttribute("al3", al3);
%>


 <c:if test="${empty str1 }">
str1
</c:if>
<c:if test="${empty str2 }">
str2
</c:if>
<c:if test="${empty str3 }">
str3
</c:if>
<c:if test="${empty al1 }">
al1
</c:if>
<c:if test="${empty al2 }">
al2
</c:if>
<c:if test="${empty al3 }">
al3
</c:if>


测试结果是:str1 str2 al1 al2

说明:
${empty obj}
规则:
[b]1 若obj 为 null 时,返回 true
2 若obj 为空 String 时,返回 true
3 若obj 为空 Array 时,返回 true
4 若obj 为空 Map 时,返回 true
5 若obj 为空 Collection 时,返回 true
6 否则,返回 false[/b]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值