求java分页代码,急用!

求java分页代码,最好有注释,急用!... 求java分页代码,最好有注释,急用! 展开
 我来答
23400262
推荐于2016-08-05 · TA获得超过312个赞
知道答主
回答量:222
采纳率:0%
帮助的人:0
展开全部
package common.util;

import java.util.*;

public class PageController implements IPageModel {
private Collection model;

//数据总行数
private int totalRowCount = 0; //

//总页数
private int pageCount = 0;

//每页应显示的行数
private int maxPageRowCount = 0;

//当前页行数
private int currPageRowCount = 0;

//当前页号
private int currPageNum;

//默认构造
public PageController() {
super();
}

//传入模型
public PageController(Collection model) {
setPageController(model);
}

//设一个分页模型
public void setPageController(Collection model) {
this.model = model;
this.totalRowCount = model.size();
}
/**
* 总页数
* @return int
*/
public int getPageCount() {
return this.pageCount;
}

/**
* getPageContents
*
* @param intPageNum int
* @return Object
*/
public Object getPageContents(int intPageNum) {
//非法数据
if(intPageNum<1){
intPageNum=1;
}
if(intPageNum>pageCount){
intPageNum=pageCount;
}
//指定当前页
this.currPageNum=intPageNum;
int i = 0;
ArrayList arr = new ArrayList();
//如果是合法的范围
if (intPageNum > 0 && intPageNum <= pageCount) {
//计算该页的开始号和结束号
int lfromrow = (intPageNum - 1) * maxPageRowCount;
arr = (ArrayList) getElementsAt(model, lfromrow, lfromrow + maxPageRowCount-1);
}
currPageNum=intPageNum;
return arr;
}

public Object getLastPage() {
return this.getPageContents(pageCount);
}

public Object getFirstPage() {
return this.getPageContents(0);
}

/**
* getCurrentPageRowsCount
*
* @return int
*/
public int getCurrentPageRowsCount() {
if(currPageNum<pageCount){
return maxPageRowCount;
}
else{//最后一页
return totalRowCount-(pageCount-1)*maxPageRowCount;
}
}
public int getCurrentPageNum(){
return currPageNum;
}
/**
* setMaxPageRows
*
* @return int
*/
public void setMaxPageRows(int rowCount) {
maxPageRowCount = rowCount;
//计算总页数
if (totalRowCount % maxPageRowCount > 0) { //有余数
pageCount = totalRowCount / maxPageRowCount + 1;
}
else {
pageCount = totalRowCount / maxPageRowCount;
}
}

/**
* getMaxPageRows
*/
public int getMaxPageRows() {
return maxPageRowCount;
}
//私有方法,返回集合中指定范围的数据
private Object getElementsAt(Collection model, int fromIndex, int toIndex) {
Iterator iter = model.iterator();
ArrayList arr = new ArrayList();
if (iter != null) {
int i = 0;
while (iter.hasNext()) {
Object obj=iter.next();
if (i >= fromIndex && i <= toIndex) {
arr.add(obj);
}
if (i > toIndex) {
break;
}
i = i + 1;
}
}
return arr;
}

}
百度网友1b7eae8
2007-05-17 · TA获得超过700个赞
知道小有建树答主
回答量:967
采纳率:0%
帮助的人:715万
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式