<body background="<%=sBgFile%>" BGCOLOR="000000" LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 onLoad="onload();">
 <table>
     <tr>
         <td height="100"width="50"></td>
     </tr>
   <%
                 SelectBean selectBean = new SelectBean(request);
          Collection arrayCen = null;
        try {
                arrayCen = selectBean.selecttable();
                 } catch (Exception e) {
                     e.printStackTrace();
                 }
        if(arrayCen!=null&&arrayCen.size()>0)
        {
            Iterator it = arrayCen.iterator();
while (it.hasNext()) {
EpForm empForm = (EpForm) it.next();                %>
<tr>
<td><%=empForm.getFilmName()%></td> </tr>
<%  }        }
        %>
    
 
      </table>
</body>数据我已经取出来了我想分页显示要怎么作