最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
jsp分页
时间:2022-07-02 17:23:29 编辑:袖梨 来源:一聚教程网
jsp分页
public int doStartTag() throws JspException {
StringBuffer sb = null;
if (result != null && result.getContent() != null
&& result.getContent().size() > 0) {
sb = new StringBuffer("分页: ");
if (result.getPage().getHasPrePage()){
sb.append("").append("首页").append("").append(" | ");
sb.append("").append("上页").append("").append(" | ");
}
if (result.getPage().getHasNextPage()) {
sb.append("").append("下页").append("").append(" | ");
sb.append("").append("尾页").append("");
}
sb
.append(" 跳转到:
for (int i = 1; i <= s; i++) {
sb.append("
sb.append(">第").append(i).append("页");
}
sb.append("");
sb.append("