• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: 小 中 大 | 推荐给好友 上一篇 | 下一篇

java:自己写的实现翻页功能的类

发布: 2007-7-04 13:34 | 作者: admin | 来源:  网友评论 | 查看: 17次 | 进入软件测试论坛讨论

领测软件测试网 在java中,翻页比较头疼,下面是我写的一个实现翻页功能的类
请高手指正。
我的体会:
优点:简单好用
缺点:一次就从数据库中读出了所有的信息。不知如何改进,请指教
public class selectPage implements java.io.Serializable{ //我的翻页类
private int pageRecord; //分页单位=10
private int currentPage; //当前页=1

private ArrayList allInfo; // 记录集
private int allRow; //数据表总记录数=0
private int pages; //总页数=0

public selectPage(ArrayList list) {
this.allInfo = list;
this.pageRecord = 10;
this.currentPage = 1;
this.allRow = list.size();
this.pages = allRow/10;
if(allRow%10!=0)this.pages++;
}

public void setPageRecord(int pgrecord){
pageRecord = pgrecord;
}

public void setPages(){ //根据pageRecord改变总页
int p = allRow/pageRecord;
if(allRow%pageRecord!=0)p++;
this.pages = p;
}

public void setCurrentPage(int curpage){
currentPage = curpage;
}

public int getPageRecord(){
return pageRecord;
}

public int getPages(){
return pages;
}

public int getCurrentPage(){
return currentPage;
}

public int getAllRow(){
return allRow;
}

public ArrayList getPage(){
ArrayList tempList = new ArrayList();
int endindex = pageRecord*currentPage > allRow? allRow:pageRecord*currentPage;
for(int i=pageRecord*(currentPage-1);i<endindex;i++){
tempList.add(allInfo.get(i));
}
return tempList;
}

public String toString(){
String tempStr = "pageRecord="+this.getPageRecord()+"currentPage="+this.getCurrentPage()+"allRow="+this.getAllRow()+"pages="+this.getPages();
return tempStr;
}
}

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:[email protected] 电话:010-51297073

软件测试 | 领测国际 | ISTQB | ISTQB官网 | TMMi | TMMi认证 | 国际软件测试工程师认证 | 领测软件测试网