Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I validate if a String is null or empty using the c tags of JSTL?

I have a variable of name var1 and I can display it, but I want to add a comparator to validate it.

<c:out value="${var1}" />

I want to validate when it is null or empty (my values are strings).

share|improve this question

2 Answers

up vote 143 down vote accepted

You can use the <c:if> or <c:choose> for this.

<c:if test="${empty var1}">
    var1 is empty or null.
</c:if>
<c:if test="${not empty var1}">
    var1 is NOT empty or null.
</c:if>

or

<c:choose>
    <c:when test="${empty var1}">
        var1 is empty or null.
    </c:when>
    <c:otherwise>
        var1 is NOT empty or null.
    </c:otherwise>
</c:choose>

The ${not empty var1} can also be done by ${!empty var1}.

To learn more about those ${} things (the Expression Language, which is a separate subject from JSTL), check here.

share|improve this answer
1  
For people who are having odd problems with the empty check, here's a fishy story with a possible cause: gayleforce.wordpress.com/2008/01/26/jstl-empty-operator – CodeReaper Jun 4 '12 at 12:26
4  
Summarized: empty doesn't work on Set when using the ancient JSTL 1.0. You'd need to upgrade to JSTL 1.1 (which is from 2003 already). – BalusC Jun 4 '12 at 12:32
1  
@Lion: that's correct. – BalusC Nov 12 '12 at 10:46
1  
is empty equvilant to ne ' ' – shareef Jan 17 at 9:36
1  
@shareef: no, it isn't. In case of String values, it's equivalent to var ne null and var ne ''. Further it also supports Object, array, Collection and Map. – BalusC Jan 17 at 11:36
show 2 more comments

This code is correct but if you entered a lot of space (' ') instead of null or empty string return false.

To correct this use regular expresion (this code below check if the variable is null or empty or blank the same as org.apache.commons.lang.StringUtils.isNotBlank) :

<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
        <c:if test="${not empty description}">
            <c:set var="description" value="${fn:replace(description, ' ', '')}" />
            <c:if test="${not empty description}">
                  The description is not blank.
            </c:if>
        </c:if>
share|improve this answer

protected by Community Oct 3 '12 at 3:08

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.