检查jsp中的空字符串

时间:2010-08-03 17:28:49

标签: jsp struts

如何在Struts-JSP页面中检查Empty String / Null String。

Struts标签 - 不起作用?

3 个答案:

答案 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