<c:set var="name" value="${param.byName}"></c:set>
<c:out value="${name}"></c:out> // Here the value is displaying
<c:forEach var="viewlist1" items="${inwardList}">
<c:if test="${name eq viewlist1.vendor} ">
<c:out value="${viewlist1.vendor}"></c:out> // Here I am not getting
</c:if>
</c:forEach>
JSTL c:如果不与String变量进行比较,任何人都可以帮助我。