bean:size 与loginc:iterate map的用法

<%
     Collection col = new ArrayList();
     col.add("MLDN");
     col.add("yby");
     col.add("mole");
    
    
  
    request.setAttribute("nameCol",col);
    List list = new ArrayList();
    Map map = new HashMap();
    list.add("q");list.add("2");
    map.put("1",list);
     request.setAttribute("map",map);
     %>
      <!-- 下面为输出Collection长度 --> <bean:write name="nameCol" />
     <bean:size id="size" name="nameCol" scope="request"/>
    <h1>长度是:
    <bean:write name="size"/>
    </h1>
  <logic:iterate id="rr" name="map">
  <logic:iterate id="ss" name="rr"  property="value">
      <bean:define id="str" name="rr" property="value" />  
     <%=str%>
     <bean:size id="size1" name="str"/>
    <h1>长度是:
    <bean:write name="size1"/>
    </h1>
  </logic:iterate>
  </logic:iterate>

你可能感兴趣的:(bean)