String table = "";
table=table+"<table id="+"table1"+" width="+"100%"+" cellpadding="+"0"+" cellspacing="+"0"+" class="+"FormListTable"+"  ><tr align="+"center"+"><td width="+"10%"+" nowrap class=FormListTableHead >"+"名称"+"</td>";
for(int i=0;i<dictionaryName.length;i++){
table=table+"<td width="+"10%"+" nowrap class=FormListTableHead >"+dictionaryName[i]+"</td>";

}
table=table+"</tr>";

for(int i=0;i<pagelet.getPageList().size();i++){
Object[] object = (Object[]) pagelet.getPageList().get(i);
table=table+"<tbody id="+"group_one"+"><tr width="+"100%"+" height="+"100%"+">";
for(int j=0;j<object.length;j++){
if(j==0){
table=table+"<td class=FormListTableBody>"+"<a href='"+url+"/listAttendance.do?attendUserName="+object[j].toString()+"' target="+"_self"+">"+object[j].toString()+"</a>"+"</td>";
}
else if(j>=1){
table=table+"<td class=FormListTableBody>"+object[j].toString()+"</td>";
}

}
table=table+"</tr>";
}
table=table+"</tbody></table>";
在后台写的table,传到前台jsp怎样实现分页?