求java分页代码,急用!
1个回答
推荐于2016-07-20
展开全部
全部代码为:
packagecommon.util;
importjava.util.*;
publicclassPageControllerimplementsIPageModel{
privateCollectionmodel;
//数据总行数
privateinttotalRowCount=0;//
//总页数
privateintpageCount=0;
//每页应显示的行数
privateintmaxPageRowCount=0;
//当前页行数
privateintcurrPageRowCount=0;
//当前页号
privateintcurrPageNum;
//默认构造
publicPageController(){
super();
}
//传入模型
publicPageController(Collectionmodel){
setPageController(model);
}
//设一个分页模型
publicvoidsetPageController(Collectionmodel){
this.model=model;
this.totalRowCount=model.size();
}
/**
*总页数
*@returnint
*/
publicintgetPageCount(){
returnthis.pageCount;
}
/**
*getPageContents
*
*@paramintPageNumint
*@returnObject
*/
publicObjectgetPageContents(intintPageNum){
//非法数据
if(intPageNum<1){
intPageNum=1;
}
if(intPageNum>pageCount){
intPageNum=pageCount;
}
//指定当前页
this.currPageNum=intPageNum;
inti=0;
ArrayListarr=newArrayList();
//如果是合法的范围
if(intPageNum>0&&intPageNum<=pageCount){
//计算该页的开始号和结束号
intlfromrow=(intPageNum-1)*maxPageRowCount;
arr=(ArrayList)getElementsAt(model,lfromrow,lfromrow+maxPageRowCount-1);
}
currPageNum=intPageNum;
returnarr;
}
publicObjectgetLastPage(){
returnthis.getPageContents(pageCount);
}
publicObjectgetFirstPage(){
returnthis.getPageContents(0);
}
/**
*getCurrentPageRowsCount
*
*@returnint
*/
publicintgetCurrentPageRowsCount(){
if(currPageNum<pageCount){
returnmaxPageRowCount;
}
else{//最后一页
returntotalRowCount-(pageCount-1)*maxPageRowCount;
}
}
publicintgetCurrentPageNum(){
returncurrPageNum;
}
/**
*setMaxPageRows
*
*@returnint
*/
publicvoidsetMaxPageRows(introwCount){
maxPageRowCount=rowCount;
//计算总页数
if(totalRowCount%maxPageRowCount>0){//有余数
pageCount=totalRowCount/maxPageRowCount+1;
}
else{
pageCount=totalRowCount/maxPageRowCount;
}
}
/**
*getMaxPageRows
*/
publicintgetMaxPageRows(){
returnmaxPageRowCount;
}
//私有方法,返回集合中指定范围的数据
privateObjectgetElementsAt(Collectionmodel,intfromIndex,inttoIndex){
Iteratoriter=model.iterator();
ArrayListarr=newArrayList();
if(iter!=null){
inti=0;
while(iter.hasNext()){
Objectobj=iter.next();
if(i>=fromIndex&&i<=toIndex){
arr.add(obj);
}
if(i>toIndex){
break;
}
i=i+1;
}
}
returnarr;
}
}
packagecommon.util;
importjava.util.*;
publicclassPageControllerimplementsIPageModel{
privateCollectionmodel;
//数据总行数
privateinttotalRowCount=0;//
//总页数
privateintpageCount=0;
//每页应显示的行数
privateintmaxPageRowCount=0;
//当前页行数
privateintcurrPageRowCount=0;
//当前页号
privateintcurrPageNum;
//默认构造
publicPageController(){
super();
}
//传入模型
publicPageController(Collectionmodel){
setPageController(model);
}
//设一个分页模型
publicvoidsetPageController(Collectionmodel){
this.model=model;
this.totalRowCount=model.size();
}
/**
*总页数
*@returnint
*/
publicintgetPageCount(){
returnthis.pageCount;
}
/**
*getPageContents
*
*@paramintPageNumint
*@returnObject
*/
publicObjectgetPageContents(intintPageNum){
//非法数据
if(intPageNum<1){
intPageNum=1;
}
if(intPageNum>pageCount){
intPageNum=pageCount;
}
//指定当前页
this.currPageNum=intPageNum;
inti=0;
ArrayListarr=newArrayList();
//如果是合法的范围
if(intPageNum>0&&intPageNum<=pageCount){
//计算该页的开始号和结束号
intlfromrow=(intPageNum-1)*maxPageRowCount;
arr=(ArrayList)getElementsAt(model,lfromrow,lfromrow+maxPageRowCount-1);
}
currPageNum=intPageNum;
returnarr;
}
publicObjectgetLastPage(){
returnthis.getPageContents(pageCount);
}
publicObjectgetFirstPage(){
returnthis.getPageContents(0);
}
/**
*getCurrentPageRowsCount
*
*@returnint
*/
publicintgetCurrentPageRowsCount(){
if(currPageNum<pageCount){
returnmaxPageRowCount;
}
else{//最后一页
returntotalRowCount-(pageCount-1)*maxPageRowCount;
}
}
publicintgetCurrentPageNum(){
returncurrPageNum;
}
/**
*setMaxPageRows
*
*@returnint
*/
publicvoidsetMaxPageRows(introwCount){
maxPageRowCount=rowCount;
//计算总页数
if(totalRowCount%maxPageRowCount>0){//有余数
pageCount=totalRowCount/maxPageRowCount+1;
}
else{
pageCount=totalRowCount/maxPageRowCount;
}
}
/**
*getMaxPageRows
*/
publicintgetMaxPageRows(){
returnmaxPageRowCount;
}
//私有方法,返回集合中指定范围的数据
privateObjectgetElementsAt(Collectionmodel,intfromIndex,inttoIndex){
Iteratoriter=model.iterator();
ArrayListarr=newArrayList();
if(iter!=null){
inti=0;
while(iter.hasNext()){
Objectobj=iter.next();
if(i>=fromIndex&&i<=toIndex){
arr.add(obj);
}
if(i>toIndex){
break;
}
i=i+1;
}
}
returnarr;
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询