struts+hibernate的分页代码

本文介绍了一个用于员工信息管理系统的分页类PageBean的实现细节。该类通过管理分页信息如当前页、总页数等,支持向前翻页、向后翻页等功能,适用于Java应用程序中的数据展示。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

package com.sict.employeeManagement.help;
import java.util.ArrayList;
import java.util.Iterator;

import com.sict.employeeManagement.data.SzEmployee;


public class PageBean {
int currentPage=1; //当前页
public int totalPages=0; //总页数
int pageRecorders=10;//每页5条数据
int totalRows=0; //总数据数
int pageStartRow=0;//每页的起始数
int pageEndRow=0; //每页显示数据的终止数
boolean hasNextPage=false; //是否有下一页
boolean hasPreviousPage=false; //是否有前一页
ArrayList arrayList;
Iterator it;
public PageBean(){}

public PageBean(ArrayList arrayList){
this.arrayList=arrayList;
totalRows=arrayList.size();
// System.out.print(totalRows);
it=arrayList.iterator();
hasPreviousPage=false;
currentPage=1;
if((totalRows%pageRecorders)==0)
{
totalPages=totalRows/pageRecorders;
}
else
{
totalPages=totalRows/pageRecorders+1;
}

if(currentPage>=totalPages)
{
hasNextPage=false;
}
else
{
hasNextPage=true;
}


if(totalRows<pageRecorders)
{
this.pageStartRow=0;
this.pageEndRow=totalRows;
}
else
{
this.pageStartRow=0;
this.pageEndRow=pageRecorders;
}

}

/**
* @return Returns the currentPage.
*/
public String getCurrentPage() {
return this.toString(currentPage);
}
/**
* @param currentPage The currentPage to set.
*/
public void setCurrentPage(int currentPage) {
this.currentPage = currentPage;
}
/**
* @return Returns the pageRecorders.
*/
public int getPageRecorders() {
return pageRecorders;
}
/**
* @param pageRecorders The pageRecorders to set.
*/
public void setPageRecorders(int pageRecorders) {
this.pageRecorders = pageRecorders;
}
/**
* @return Returns the pageEndRow.
*/
public int getPageEndRow() {
return pageEndRow;
}
/**
* @return Returns the pageStartRow.
*/
public int getPageStartRow() {
return pageStartRow;
}
/**
* @return Returns the totalPages.
*/
public String getTotalPages() {

return this.toString(totalPages);
}
/**
* @return Returns the totalRows.
*/
public String getTotalRows() {
return this.toString(totalRows);
}
/**
* @return Returns the hasNextPage.
*/
public boolean isHasNextPage() {
return hasNextPage;
}
/**
* @param hasNextPage The hasNextPage to set.
*/
public void setHasNextPage(boolean hasNextPage) {
this.hasNextPage = hasNextPage;
}
/**
* @return Returns the hasPreviousPage.
*/
public boolean isHasPreviousPage() {
return hasPreviousPage;
}
/**
* @param hasPreviousPage The hasPreviousPage to set.
*/
public void setHasPreviousPage(boolean hasPreviousPage) {
this.hasPreviousPage = hasPreviousPage;
}
public SzEmployee[] getNextPage(){

currentPage=currentPage+1;
// System.out.println("PageBean.getNextPage()正在执行;");
// System.out.println("参数currentPage="+currentPage);

if((currentPage-1)>0)
{
hasPreviousPage=true;
}
else
{
hasPreviousPage=false;
}

if(currentPage>=totalPages)
{
hasNextPage=false;
}
else
{
hasNextPage=true;
}
// System.out.println("参数hasNextPage="+hasNextPage);
// System.out.println("准备执行PageBean.getBooks()");
SzEmployee[] employees=getSzEmployees();
this.description();

return employees;
}

public SzEmployee[] getPreviouspage(){

currentPage=currentPage-1;

if(currentPage==0){currentPage=1;}

if(currentPage>=totalPages)
{
hasNextPage=false;
}
else
{
hasNextPage=true;
}
if((currentPage-1)>0)
{
hasPreviousPage=true;
}
else
{
hasPreviousPage=false;
}
SzEmployee[] employees=getSzEmployees();
this.description();
return employees;
}

public SzEmployee[] getFirstpage(){

currentPage=1;

if(currentPage>=totalPages)
{
hasNextPage=false;
}
else
{
hasNextPage=true;
}
if((currentPage-1)>0)
{
hasPreviousPage=true;
}
else
{
hasPreviousPage=false;
}
SzEmployee[] employees=getSzEmployees();
this.description();
return employees;
}

public SzEmployee[] getLastpage(){

currentPage=totalPages;

if(currentPage>=totalPages)
{
hasNextPage=false;
}
else
{
hasNextPage=true;
}
if((currentPage-1)>0)
{
hasPreviousPage=true;
}
else
{
hasPreviousPage=false;
}
SzEmployee[] employees=getSzEmployees();
this.description();
return employees;
}

public SzEmployee[] getSzEmployees(){
// System.out.println("pageBean.getPros()开始执行;");


if(currentPage*pageRecorders<totalRows){//判断是否为最后一页
pageEndRow=currentPage*pageRecorders;
pageStartRow=pageEndRow-pageRecorders;
}
else{
pageEndRow=totalRows;
pageStartRow=pageRecorders*(totalPages-1);
}
SzEmployee[] employees=new SzEmployee[pageEndRow-pageStartRow+1];

// System.out.println("pageStartRow="+pageStartRow);
// System.out.println("pageEndRow="+pageEndRow);
int j=0;
for(int i=pageStartRow;i<pageEndRow;i++)
{
if(i>=0){
SzEmployee employee=(SzEmployee)arrayList.get(i);
employees[j++]=employee;
}

}

this.description();
return employees;
}

public String toString(int temp)
{
String str=Integer.toString(temp);
return str;
}

public void description()
{

String description="共有数据数:"+this.getTotalRows()+

"共有页数: "+this.getTotalPages() +

"当前页数为:"+this.getCurrentPage()+

" 是否有前一页: "+this.isHasPreviousPage() +

" 是否有下一页:"+this.isHasNextPage()+

" 开始行数:"+this.getPageStartRow()+

" 终止行数:"+this.getPageEndRow();

// System.out.println(description);

}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值