如何在Struts-JSP页面中检查Empty String / Null String。
Struts标签 - 不起作用?
答案 0 :(得分:21)
见下文:
<c:if test='${not empty param.whatever}'>
...
</c:if>
答案 1 :(得分:4)
<logic:empty param="<%= yourString %>">
或者您要检查的字符串是bean的属性:
<logic:empty name="yourBean" property="yourBeanStringProperty">
答案 2 :(得分:-5)
String foo = null;
if(foo == null or foo.length() ==0) // The string is null