资源简介
包含page.java分页实体类和page.jsp分页页面代码。
使用简单,注释非常详细,一看就懂。
只需把page.jsp导入需要分页的界面即可。
不需要再为每个需要分页的界面重新写分页代码。
代码片段和文件信息
/**
* 分页实体类
* @version [版本号 Nov 9 2011]
*/
public class Page {
private int currentPage;//当前页
private int pageSize; //分页大小
private int totalNum; //总条数
private int totalPage; //总页数
private String url; //url地址
//private object obj;
private String firstPageUrl;//首页
private String nextPageUrl; //下一页
private String prePageUrl; //上一页
private String lastPageUrl; //尾页
public Page(int currentPage int pageSize int totalNum String url) {
super();
this.pageSize = pageSize;
this.totalNum = totalNum;
this.url = url;
totalPage = totalNum/pageSize;
//如果总条数能不被每页条数整除,总页数加1
if (0!=totalNum%pageSize){
totalPage ++;
}
if (currentPage>totalPage) {//当前页大于总页数时,把总页数的值赋给当前页
this.currentPage = totalPage;
}else if (current
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3479 2011-11-18 02:45 page.java
文件 3532 2011-11-18 02:45 page.jsp
----------- --------- ---------- ----- ----
7011 2
- 上一篇:java实现对接LED屏
- 下一篇:火锅订餐管理系统毕业设计
评论
共有 条评论