菜鸟用标签做分页

这几天为了做项目而写了一个比较菜的标签,与大家分享,由于本人比较菜,还希望大家多多提宝贵意见!

涉及到分页的一共有3个类:BasePageTag .java,PageTag ,java,StringUtil .java

 

BasePageTag .java
  1. package com.cnc.proud.tag;   
  2.   
  3. import javax.servlet.jsp.tagext.BodyTagSupport;   
  4.   
  5. /**  
  6.  
  7.  @author xueguiping  
  8.  *   
  9.  */  
  10. public class BasePageTag extends BodyTagSupport {   
  11.   
  12.  private static final long serialVersionUID = 5514331269166734936L;   
  13.   
  14.  protected String totalSize; // 总数据量   
  15.   
  16.  protected String avgSize;// 每页数量   
  17.   
  18.  protected String curPage;// 当前页   
  19.   
  20.  protected String url;// 翻页地址   
  21.   
  22.  protected String params;// url参数   
  23.   
  24.  private String tagName;// 标签名称   
  25.   
  26.  private String sign;// 标签名称标识   
  27.   
  28.  public BasePageTag() {   
  29.   super();   
  30.  }   
  31.   
  32.  public String getAvgSize() {   
  33.   return avgSize;   
  34.  }   
  35.   
  36.  public void setAvgSize(String avgSize) {   
  37.   this.avgSize = avgSize;   
  38.  }   
  39.   
  40.  public String getCurPage() {   
  41.   return curPage;   
  42.  }   
  43.   
  44.  public void setCurPage(String curPage) {   
  45.   this.curPage = curPage;   
  46.  }   
  47.   
  48.  public String getParams() {   
  49.   return params;   
  50.  }   
  51.   
  52.  public void setParams(String params) {   
  53.   this.params = params;   
  54.  }   
  55.   
  56.  public String getSign() {   
  57.   return sign;   
  58.  }   
  59.   
  60.  public void setSign(String sign) {   
  61.   this.sign = sign;   
  62.  }   
  63.   
  64.  public String getTagName() {   
  65.   return tagName;   
  66.  }   
  67.   
  68.  public void setTagName(String tagName) {   
  69.   this.tagName = tagName;   
  70.  }   
  71.   
  72.  public String getTotalSize() {   
  73.   return totalSize;   
  74.  }   
  75.   
  76.  public void setTotalSize(String totalSize) {   
  77.   this.totalSize = totalSize;   
  78.  }   
  79.   
  80.  public String getUrl() {   
  81.   return url;   
  82.  }   
  83.   
  84.  public void setUrl(String url) {   
  85.   this.url = url;   
  86.  }   
  87.   
  88.  public void release() {   
  89.   super.release();   
  90.   this.totalSize = null;   
  91.   this.avgSize = null;   
  92.   this.curPage = null;   
  93.   this.url = null;   
  94.   this.params = null;   
  95.   this.tagName = null;   
  96.   this.sign = null;   
  97.  }   
  98. }   
  99.   

 

 

PageTag.java
  1. package com.cnc.proud.tag;   
  2.   
  3. import javax.servlet.http.HttpServletRequest;   
  4. import javax.servlet.jsp.JspException;   
  5. import javax.servlet.jsp.JspWriter;   
  6.   
  7. import com.cnc.proud.util.StringUtil;   
  8.   
  9. /**  
  10.  * @author xueguiping  
  11.  *   
  12.  */  
  13. public class PageTag extends BasePageTag {   
  14.   
  15.  private static final long serialVersionUID = -8557518497507464353L;   
  16.   
  17.  private int totalPage;   
  18.   
  19.  private int parseInt(String source) {   
  20.   return Integer.parseInt(source);   
  21.  }   
  22.   
  23.  public int doStartTag() throws JspException {   
  24.   HttpServletRequest request = (HttpServletRequest) this.pageContext   
  25.     .getRequest();   
  26.   if (StringUtil.isNull(this.totalSize)) {   
  27.    this.totalSize = "0";   
  28.   } else {   
  29.    this.totalSize = this.totalSize.trim();   
  30.    this.totalSize = (String) request.getAttribute(this.totalSize);   
  31.    if (this.totalSize == null) {   
  32.     this.totalSize = "0";   
  33.    }   
  34.   }   
  35.   if (StringUtil.isNull(this.avgSize)) {   
  36.    this.avgSize = "10";   
  37.   } else {   
  38.    this.avgSize = this.avgSize.trim();   
  39.    this.avgSize = (String) request.getAttribute(this.avgSize);   
  40.    if (this.avgSize == null) {   
  41.     this.avgSize = "10";   
  42.    }   
  43.   }   
  44.   if (StringUtil.isNull(this.curPage)) {   
  45.    this.curPage = "1";   
  46.   } else {   
  47.    this.curPage = this.curPage.trim();   
  48.    this.curPage = (String) request.getAttribute(this.curPage);   
  49.    if (this.curPage == null) {   
  50.     this.curPage = "1";   
  51.    }   
  52.   }   
  53.   if (StringUtil.isNull(this.url)) {   
  54.    this.url = "";   
  55.   } else {   
  56.    this.url = this.url.trim();   
  57.    this.url = (String) request.getAttribute(this.url);   
  58.    if (this.url == null) {   
  59.     this.url = "";   
  60.    }   
  61.   }   
  62.   if (StringUtil.isNull(this.params)) {   
  63.    this.params = "";   
  64.   } else {   
  65.    this.params = this.params.trim();   
  66.    this.params = (String) request.getAttribute(this.params);   
  67.    if (this.params == null) {   
  68.     this.params = "";   
  69.    }   
  70.   }   
  71.   
  72.   this.totalPage = parseInt(this.totalSize) % parseInt(this.avgSize) == 0 ? parseInt(totalSize)   
  73.     / parseInt(avgSize)   
  74.     : parseInt(totalSize) / parseInt(avgSize) + 1;   
  75.   if (parseInt(curPage) < 1) {   
  76.    this.curPage = "1";   
  77.   }   
  78.   if (parseInt(curPage) > totalPage) {   
  79.    this.curPage = String.valueOf(totalPage);   
  80.   }   
  81.   return this.SKIP_BODY;   
  82.  }   
  83.   
  84.  public int doEndTag() throws JspException {   
  85.   try {   
  86.    StringBuffer sb = new StringBuffer();   
  87.    JspWriter out = this.pageContext.getOut();   
  88.    if (parseInt(this.totalSize) == 0) {   
  89.     sb.append(this.getTagName());   
  90.    } else {   
  91.     if (this.getSign().equals("first")) {   
  92.      if (parseInt(this.curPage) == 1) {   
  93.       sb.append(this.getTagName());   
  94.      } else {   
  95.       sb.append("?curPage=1");  
  96.       sb.append("&" + this.getParams());  
  97.       sb.append("\">" + this.getTagName() + "");   
  98.      }   
  99.     } else if (this.getSign().equals("previous")) {   
  100.      if (parseInt(this.curPage) == 1) {   
  101.       sb.append(this.getTagName());   
  102.      } else {   
  103.       sb.append("?curPage=" + (parseInt(this.curPage) - 1));  
  104.       sb.append("&" + this.getParams());  
  105.       sb.append("\">" + this.getTagName() + "");   
  106.      }   
  107.     } else if (this.getSign().equals("next")) {   
  108.      if (parseInt(this.curPage) == totalPage) {   
  109.       sb.append(this.getTagName());   
  110.      } else {   
  111.       sb.append("?curPage=" + (parseInt(this.curPage) + 1));  
  112.       sb.append("&" + this.getParams());  
  113.       sb.append("\">" + this.getTagName() + "");   
  114.      }   
  115.     } else {   
  116.      if (parseInt(this.curPage) == totalPage) {   
  117.       sb.append(this.getTagName());   
  118.      } else {   
  119.       sb.append("?curPage=" + totalPage);  
  120.       sb.append("&" + this.getParams());  
  121.       sb.append("\">" + this.getTagName() + "");   
  122.      }   
  123.     }   
  124.    }   
  125.    out.write(sb.toString());   
  126.   } catch (Exception e) {   
  127.    System.out.println(e);   
  128.    e.printStackTrace();   
  129.   }   
  130.   return this.EVAL_PAGE;   
  131.  }   
  132.   
  133.  public void release() {   
  134.   super.release();   
  135.   this.totalPage = 0;   
  136.  }   
  137. }   
  138.   

 

 

  1. package com.cnc.proud.util;   
  2.   
  3. /**  
  4.  * 转换字符串  
  5.  *   
  6.  * @author xueguiping   
  7.  */  
  8. public class StringUtil {   
  9.   
  10.  public static boolean isNull(Object obj) {   
  11.   boolean conditon = false;   
  12.   String result = (String) obj;   
  13.   if (result == null || result == "" || result.length() < 1) {   
  14.    conditon = true;   
  15.   }   
  16.   return conditon;   
  17.  }   
  18.   
  19. }   
  20.   

 

<!----><tlibversion></tlibversion><jspversion></jspversion><shortname></shortname><description></description><tag></tag><name></name><tagclass></tagclass> <bodycontent> </bodycontent> <attribute></attribute><name></name><required></required><rtexprvalue></rtexprvalue><attribute></attribute><name></name><required></required><rtexprvalue></rtexprvalue><attribute></attribute><name></name><required></required><rtexprvalue></rtexprvalue><attribute></attribute><required></required>
<rtexprvalue></rtexprvalue>
PageTag.java是组装字符串,用于显示4个标签(首页,上一页,下一页,尾页)BasePageTag.java定义一些标签属性

 

 StringUtil.java用于判断字符串

proud.tld是定义标签(在附件中)

使用方法:

1,先在web.xml中添加标签描述
 

2,然后在action中得到各个参数然后将这些参数放到request中

  request.setAttribute("curPage", String.valueOf(curPage ));
  request.setAttribute("totalSize", String.valueOf(totalSize));
  request.setAttribute("avgSize", String.valueOf(avgSize));
  request.setAttribute("totalPage", String.valueOf(totalPage));
  request.setAttribute("url", url);
  request.setAttribute("params", params);

3,jsp页面中加入<!----> ,然后就可以调用标签,这些标签属性都是从request范围内取值,最终生成的html代码

  

希望大家多提宝贵意见,也希望对初学者能提供帮助!

谢谢!
 

StringUtil .java

 

 

你可能感兴趣的:(jsp,Web,servlet)