(转)java web自定义分页标签

时间:2024-11-19 14:08:13

转载至http://liuxi1024.iteye.com/blog/707784

效果如图:

(转)java web自定义分页标签

1、JSP规范1.1版本后增加了自定义标签库。实现自定义标签的步骤

(1)开发自定义标签处理类。

(2)建立*.tld文件。

(3)在web.xml中增加自定义标签的定义。

(4)在jsp中使用自定义标签。

2、自定义标签类

(1)继承javax.servlet.jsp.tagext.TagSupport

(2)标签类属性,及每个属性的getter和setter方法

(3)重写doStartTag或doEndTag方法。当jsp解析这个标签的时候,在“<”处触发 doStartTag
事件,在“>”时触发 doEndTag 事件。通常在 doStartTag 里进行初始化,流程选择操作,在 doEndTag
里后续页面输出控制。

  1. import java.io.IOException;
  2. import javax.servlet.jsp.JspException;
  3. import javax.servlet.jsp.tagext.TagSupport;
  4. import org.apache.commons.logging.Log;
  5. import org.apache.commons.logging.LogFactory;
  6. /**
  7. *
  8. * @author liuxi
  9. */
  10. public class PageThirdTag extends TagSupport {
  11. private static final Log log = LogFactory.getLog(PageTwoTag.class);
  12. private String formName;
  13. private String curPage;
  14. private String showPages;
  15. private String totalPages;
  16. private String PREVIOUS_PAGE = "上一页";
  17. private String NEXT_PAGE = "下一页 ";
  18. public String getHref(int number) {
  19. return "Javascript:ToPage(" + number + ");";
  20. }
  21. public String goHref(int number) {
  22. return " <a href=\"" + getHref(number) + "\" class=\"pagebox\">" + number + "</a>";
  23. }
  24. public int doEndTag() throws JspException {
  25. int showPages = Integer.parseInt(this.showPages);
  26. int curpage = Integer.parseInt(this.curPage);
  27. int totalPages = Integer.parseInt(this.totalPages);
  28. StringBuffer strBuf = new StringBuffer(512);
  29. // 总页数
  30. int pagecount = totalPages;
  31. // 初始化值
  32. if (curpage == 0) {
  33. curpage = 1;
  34. } else {
  35. if (curpage <= 0) {
  36. curpage = 1;
  37. }
  38. if (curpage > pagecount) {
  39. curpage = pagecount;
  40. }
  41. }
  42. strBuf.append("<style type='text/css'>");
  43. strBuf.append(".pagebox{margin-left:2px;padding:3px 5px 3px 5px; border:1px solid #fff; background-color:#ebebeb;color:#FFFFFF; font-size:12px;}");
  44. strBuf.append(".cpagebox{margin-left:2px;padding:3px 5px 3px 5px; border:1px gray; background-color:#ebebeb; color:red; font-size:12px;}");
  45. strBuf.append(".vpagebox{margin-left:2px;padding:3px 5px 3px 5px; background-color:#FFFFFF; color:#000000;font-size:12px;}");
  46. strBuf.append("</style>");
  47. strBuf.append("<script language='JavaScript' type='text/JavaScript'>");
  48. strBuf.append("function ToPage(p) { \n");
  49. strBuf.append(" window.document." + formName + ".pageNo.value=p;\n");
  50. strBuf.append(" window.document." + formName + ".submit();\n");
  51. strBuf.append("}</script>");
  52. if (curpage > 1) {
  53. strBuf.append("<a href=\"" + getHref(curpage - 1) + "\" class=\"pagebox\" >" + PREVIOUS_PAGE + "</a>");
  54. }
  55. // 分页
  56. if (pagecount <= showPages + 2) {
  57. for (int i = 1; i <= pagecount; i++) {
  58. if (i == curpage) {
  59. strBuf.append("<font class=\"cpagebox\">" + i + "</font>");
  60. } else {
  61. strBuf.append(goHref(i));
  62. }
  63. }
  64. } else {
  65. if (curpage < showPages) {
  66. for (int i = 1; i <= showPages; i++) {
  67. if (i == curpage) {
  68. strBuf.append("<font class=\"cpagebox\">" + i + "</font>");
  69. } else {
  70. strBuf.append(goHref(i));
  71. }
  72. }
  73. strBuf.append("<font class=\"vpagebox\">...</font>");
  74. strBuf.append(goHref(pagecount));
  75. } else if (curpage > pagecount - showPages + 1) { // 右边
  76. strBuf.append(goHref(1));
  77. strBuf.append("<font class=\"vpagebox\">...</font>");
  78. for (int i = pagecount - showPages + 1; i <= pagecount; i++) {
  79. if (i == curpage) {
  80. strBuf.append("<font class=\"cpagebox\">" + i
  81. + "</font>");
  82. } else {
  83. strBuf.append(goHref(i));
  84. }
  85. }
  86. } else { // 中间
  87. strBuf.append(goHref(1));
  88. //strBuf.append(goHref(2));
  89. strBuf.append("<font class=\"vpagebox\">...</font>");
  90. int offset = (showPages - 2) / 2;
  91. for (int i = curpage - offset; i <= curpage + offset; i++) {
  92. if (i == curpage) {
  93. strBuf.append("<font class=\"cpagebox\">" + i + "</font>");
  94. } else {
  95. strBuf.append(goHref(i));
  96. }
  97. }
  98. strBuf.append("<font class=\"vpagebox\">...</font>");
  99. strBuf.append(goHref(pagecount));
  100. }
  101. }
  102. // 显示下-页
  103. if (curpage != pagecount) {
  104. // 加上链接 curpage+1
  105. strBuf.append("<a href=\"" + getHref(curpage + 1) + "\" class=\"pagebox\" >" + NEXT_PAGE + "</a>");
  106. }
  107. strBuf.append("<input name='pageNo' type='hidden' size='3' length='3' />");
  108. try {
  109. pageContext.getOut().println(strBuf.toString());
  110. } catch (IOException e) {
  111. e.printStackTrace();
  112. log.debug(e.getMessage());
  113. }
  114. return EVAL_PAGE;
  115. }
  116. public String getFormName() {
  117. return formName;
  118. }
  119. public void setFormName(String formName) {
  120. this.formName = formName;
  121. }
  122. public String getCurPage() {
  123. return curPage;
  124. }
  125. public void setCurPage(String curPage) {
  126. this.curPage = curPage;
  127. }
  128. public String getShowPages() {
  129. return showPages;
  130. }
  131. public void setShowPages(String showPages) {
  132. this.showPages = showPages;
  133. }
  134. public String getTotalPages() {
  135. return totalPages;
  136. }
  137. public void setTotalPages(String totalPages) {
  138. this.totalPages = totalPages;
  139. }
  140. }

说明:

(1)如何输出到jsp页面:调用pageContext.getOut().println()。
(2)输出后如何作处理,函数会返回几个值之一。EVAL_PAGE 表示tag已处理完毕,返回jsp页面。

3、建立self.tld 文件

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <taglib xmlns="http://java.sun.com/xml/ns/javaee"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd"
  5. version="2.1">
  6. <description>TEST Tag library</description>
  7. <display-name>TEST Tag</display-name>
  8. <tlib-version>1.0</tlib-version>
  9. <short-name>test</short-name>
  10. <uri>/test</uri>
  11. <tag>
  12. <description>Page Info</description>
  13. <name>pagethird</name>
  14. <tag-class>com.test.web.tag.PageThirdTag</tag-class>
  15. <body-content>empty</body-content>
  16. <attribute>
  17. <description>the name of the current form</description>
  18. <name>formName</name>
  19. <required>true</required>
  20. <rtexprvalue>false</rtexprvalue>
  21. </attribute>
  22. <attribute>
  23. <description>Show Records</description>
  24. <name>showPages</name>
  25. <required>true</required>
  26. <rtexprvalue>true</rtexprvalue>
  27. </attribute>
  28. <attribute>
  29. <description>Current Page</description>
  30. <name>curPage</name>
  31. <required>true</required>
  32. <rtexprvalue>true</rtexprvalue>
  33. </attribute>
  34. <attribute>
  35. <description>Total Pages</description>
  36. <name>totalPages</name>
  37. <required>true</required>
  38. <rtexprvalue>true</rtexprvalue>
  39. </attribute>
  40. </tag>
  41. </taglib>

说明:

short-name:taglib的名称。

name:tag的名字。

name:tag的名字。

body-content:指tag之间的内容。

required:是否必填属性。

rtexprvalue:是否支持动态传值。

4、web.xml中加入自定义标签定义

  1. <jsp-config>
  2. <taglib>
  3. <taglib-uri>test</taglib-uri>
  4. <taglib-location>/WEB-INF/tld/self.tld</taglib-location>
  5. </taglib>
  6. </jsp-config>

5、jsp中使用该自定义标签

  1. <%@ taglib prefix="test" uri="test" %>
  1. <test:pagethird formName="pictureForm" showPages="${ pageBean.showPages }" curPage="${ pageBean.pageNo }" totalPages="${ pageBean.totalPages }"/>

6、over