<c:forEach items="${userlist}" var="fl"> <c:if test="${fl.username==username}">${fl.username}</c:if> </c:forEach>
============================================
<c:forEach var="wholesalers" items="${ wholesalers}"> <tr> <td height="28" ><c:out value="${wholesalers.id}"></c:out></td> <td ><c:out value="${wholesalers.name }"></c:out></td> <td><c:if test="${wholesalers.status==0}">有效</c:if> <c:if test="${wholesalers.status==1}">被删除</c:if> <c:if test="${wholesalers.status==2}">无效</c:if> </td> <td ><fmt:formatDate value="${wholesalers.createTime }" pattern="yyyy-MM-dd HH:mm:ss"/> </td> <td ><a href="./merchantDetails.do?id=${wholesalers.id}">详情</a></td> </tr> </c:forEach>