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 replace true and false with yes or no using JSP and JSTL? i hava values TRUE and FALSE in my table. i want when i retive these values using jstl on my jsp pages the true false will replace with YES AND NO

share|improve this question

1 Answer

up vote 3 down vote accepted

I would suggest using a tagfile.

Create the tagfile, (say, /WEB-INF/tags/yesno.tag) with something like this:

<%@ attribute name="value" type="lava.lang.Boolean" required="true" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<c:choose><c:when test="${value}">yes</c:when><c:otherwise>no</c:otherwise></c:choose>

Then in your JSP:

<%@ taglib prefix="tags" tagdir="/WEB-INF/tags"%>

<tags:yesno value=${MyBoolean}"/>

The tagfile is a bit cumbersome, but it's well encapsulated and reusable.

share|improve this answer
thanks alot. its work. Again thanks Mr skaffman.......... – user346077 Jun 7 '10 at 17:01
You should then vote and accept this answer (and review your previous questions as well). Also see stackoverflow.com/faq to learn how to use stackoverflow properly :) – BalusC Jun 7 '10 at 21:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.