我正在使用struts标记迭代Jsp中的Vo,在其中我得到了一个整数值

<struts_logic:iterate id="usersVO" indexId="index" name="data" type="utils.vo.UsersVO">

<td class="tabletext"><struts_bean:write name="usersVO" property="userType"/></td>


这里的userType是一个int值。
我如何获得这个价值

<%
  int x = **here**
%>


所以我可以处理它进行显示。

还是有其他方法可以显示String值取决于传入的int值?

最佳答案

听起来您应该<c:choose>。例如:

<c:choose>
    <c:when test="${usersVO.userType==1}">
        <p>User type is 1</p>
    </c:when>
    <c:when test="${usersVO.userType==2}">
        <p>etc</p>
    </c:when>
   <c:otherwise>
       <p>User type is unknown</p>
   </c:otherwise>
</c:choose>

10-08 11:43