在struts中分页的一种实现

2008-02-23 09:45:21来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

作者:未知 文章来源:http://www.jspcn.net/
访问次数: 次 加入时间:2005-01-19

在Struts中分页的一种实现

我的项目中的分页功能
1, 思路

使用一个页面控制类,它记录页面信息,如上页,下页,当前页等。在查询的Action中,将这个控制类和查询条件一起传递给数据库访问bean,然后将这两个参数保存在用户session中。在分页控制Action中,利用接收到的分页参数调用数据库访问的bean.


2,实现

(1)分页控制类
/* @author nick
* Created on 2004-3-18
* file name:PageController.Java
*
*
*/
package com.tower.util;

/**
* @author nick
* 2004-3-18
* 用来进行翻页控制
*
*/
public class PageController {
int totalRowsAmount; //总行数
boolean rowsAmountSet; //是否设置过totalRowsAmount
int pageSize=2; //每页行数
int currentPage=1; //当前页码
int nextPage;
int previousPage;
int totalPages; //总页数
boolean hasNext; //是否有下一页
boolean hASPrevious; //是否有前一页
String description;
int pageStartRow;
int pageEndRow;

public PageController(int totalRows){
setTotalRowsAmount(totalRows);
}
public PageController(){}





/**
* @param i
* 设定总行数
*/
public void setTotalRowsAmount(int i) {
if(!this.rowsAmountSet){
totalRowsAmount = i;
totalPages=totalRowsAmount/pageSize 1;
setCurrentPage(1);
this.rowsAmountSet=true;
}

}

/**
* @param i
*
* 当前页
*
*/
public void setCurrentPage(int i) {
currentPage = i;
nextPage=currentPage 1;
previousPage=currentPage-1;
//计算当前页开始行和结束行
if(currentPage*pageSize<totalRowsAmount){
pageEndRow=currentPage*pageSize;
pageStartRow=pageEndRow-pageSize 1;

}else{
pageEndRow=totalRowsAmount;
pageStartRow=pageSize*(totalPages-1) 1;
}


//是否存在前页和后页

if (nextPage>totalPages){
hasNext=false;
}else{
hasNext=true;
}
if(previousPage==0){
hasPrevious=false;
}else{
hasPrevious=true;
};
System.out.println(this.description());
}

/**
* @return
*/
public int getCurrentPage() {
return currentPage;
}

/**
* @return
*/
public boolean isHasNext() {
return hasNext;
}

/**
* @return
*/
public boolean isHasPrevious() {
return hasPrevious;
}

/**
* @return
*/
public int getNextPage() {
return nextPage;
}

/**
* @return
*/
public int getPageSize() {
return pageSize;
}

/**
* @return
*/
public int getPreviousPage() {
return previousPage;
}

/**
* @return
*/
public int getTotalPages() {
return totalPages;
}

/**
* @return
*/
public int getTotalRowsAmount() {
return totalRowsAmount;
}

/**
* @param b
*/
public void setHasNext(boolean b) {
hasNext = b;
}

/**
* @param b
*/
public void setHasPrevious(boolean b) {
hasPrevious = b;
}

/**
* @param i
*/
public void setNextPage(int i) {
nextPage = i;
}

/**
* @param i
*/
public void setPageSize(int i) {
pageSize = i;
}

/**
* @param i
*/
public void setPreviousPage(int i) {
previousPage = i;
}

/**
* @param i
*/
public void setTotalPages(int i) {
totalPages = i;
}
/**
* @return
*/
public int getPageEndRow() {
return pageEndRow;
}

/**
* @return
*/
public int getPageStartRow() {
return pageStartRow;
}

public String getDescription(){
String description="Total:" this.getTotalRowsAmount()
" items " this.getTotalPages() " pages";
// this.currentPage " Previous " this.hasPrevious
// " Next:" this.hasNext
// " start row:" this.pageStartRow
// " end row:" this.pageEndRow;
return description;
}

public String description(){
String description="Total:" this.getTotalRowsAmount()
" items " this.getTotalPages() " pages,Current page:"
this.currentPage " Previous " this.hasPrevious
" Next:" this.hasNext
" start row:" this.pageStartRow
" end row:" this.pageEndRow;
return description;
}


public static void main(String args[]){
PageController pc=new PageController(3);
System.out.println(pc.getDescription());
// pc.setCurrentPage(2);
// System.out.println(pc.description());
// pc.setCurrentPage(3);
// System.out.println(pc.description());
}


}

(2)查询Action的代码片断

public ActionForward execute(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response)
throws Exception {

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:一篇关于session的好文!

下一篇:CVS 的module使用