Iterate itr = list.iterate;
int i = 0;
while(itr.hasNext()){
    String[] strArr = list.get(i);
    ……
}

解决方案 »

  1.   

    在action中还没试,不过在servlet中时用list(有点像三楼)具体代码一时没找到
      

  2.   

    你的意思是把String[] xx里面的数据传到jsp中去?那应该是在action中session.setAttribute("xx", xx);jsp中String[] xx = (String[]) session.getAttribute("xx");
      

  3.   

    在action中HttpSession session =request.getSession();
    session.setAttribute("obj",要在JSP页面输出的对象);
    jsp中
    <html:form type="actionform名">
    <logic:iterate id="obj" name="obj">
    <tr>
    <td><bean:write property="actionform里对应的属性"/></td>
    </tr>
    </logic:iterate>
    LZ是不是这个意思,要还是不懂的话那你发消息给我吧~~~
      

  4.   

    <bean:define id="myList" name="AddUserForm" property="strShowGroupNameList" type="java.util.List"/><logic:iterate id="groupName" name="myList" indexId="idx" scope="session">
    <html:radio idName="ActionForminfo" property="<%=groupName%>"><bean:write name="ActionForminfo" property="<%=groupName%>" /></html:radio>
    &nbsp;
    <br/>    
    </logic:iterate>