在页面中通过for循环定义复选框控件
for(int i = 0 ;i< map.size();i++)
{
   iPlanId  = map.get("iPlanId");
%>
  <input type="checkbox" name="iPlanId" value="<%=iPlanId %>">
<%
}
后台servlet中间用
String [] iPlanId = request.getParameterValues("iPlanId");
取得数组,这个数组取得的值是checkbox中间状态为 checked的还是 取得所有的名字为iPlanId的checkbox的value在线等很急