<select name="abc">
<% 
  for(int i = 0; i < aaa.szie(); i++){
      objType tt = (objType)al.get(i);
%>
<option value=<% tt.成员1 %>><% tt.成员2 %></option>
<%}%>
</select>

解决方案 »

  1.   

    <% 
      for(int i = 0; i < aaa.szie(); i++){
          objType tt = (objType)al.get(i);
    %>
    <select name="abc">
    <option value=<% tt.成员1 %>><% tt.成员2 %></option>
    </select>
    <%
    }
    %>
      

  2.   

    cxjd(dong)的基本是对的,但是注意<%=tt.成员1 %>><%=tt.成员2 %>应该有“=”吧
      

  3.   

    不是这样子,你在Servlet中要这样写
    session.setAttribute("al",aaa);
    然后在jsp中再这样写
    aaa 
    <%
    ArrayList aaa = (ArrayList)session.getAttribute("al");
    %>