可以模仿:
<c:forEach var="listorder" items="${orderList}" begin="${begin}" end="${end}" step="1">
<c:url value="/ViewOrderAction.do" var="view">
      <c:param name="order_id" value="${listorder.order_id}" /> </c:url> 
<a href='<c:out value="${view}"/>'><c:out value="${listorder.order_id}" /></a><c:choose>
            <c:when test="${listorder.orderstatus_name=='1'}">
              <c:out value="完成" />
          </c:when>
          <c:otherwise>
            <c:out value="未完成" />
            </c:otherwise>
            </c:choose> </c:forEach>
来完善一下!