如果是用DynaActionForm
那么
<form-property name="arr1" type="java.lang.String[]"/>如果是自定义formBean,那么只要定义一个private String arr1[]以及对应的get set方法

解决方案 »

  1.   

    谢谢你,伟大的 super_zzw(之支吾)  同志
      

  2.   

    不用指明type也可以吧,在formbean里定义为数组就可以了!
    例如:在一个循环中
    <logic:iterate id="xxxx" name="xxxxx" type="xxxxxxxx" scope="request">
       <html:text property="test">
    </logic:>
    只要你的test定义为数组,传过去就可以了!
      

  3.   

    String listCheck[] = request.getParameterValues("listCheck");