网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > JSP > 正文

详细的jsp分页(oracle+jsp+apache)

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 14/07/14

文章导读:在新的一年中,各位网友都进入紧张的学习或是工作阶段。网学的各位小编整理了JSP-详细的jsp分页(oracle+jsp+apache)的相关内容供大家参考,祝大家在新的一年里工作和学习顺利!

  我的一个详细的jsp分页程序!(oracle+jsp+apache)
  一 前提
  希望最新的纪录在开头给你的表建立查询:
  表:mytable
  查询:create or replace view as mytable_view from mytable order by id desc 其中,最好使用序列号create sequence mytable_sequence 来自动增加你的纪录id号

  二 源程序
  <%String sConn="你的连接"
  Class.forName("oracle.jdbc.driver.OracleDriver");
  Connection conn=DriverManager.getConnection(sConn,"你的用户名","密码");
  Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
  Statement stmtcount=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);

  ResultSet rs=stmt.executeQuery("select * from mytable_view");
  String sqlcount="select count(*) from mytable_view";
  ResultSet rscount=stmtcount.executeQuery(sqlcount);

  int pageSize=你的每页显示纪录数;
  int rowCount=0; //总的记录数
  while (rscount
  int pageCount; //总的页数
  int currPage; //当前页数
  String strPage;
  strPage=request.getParameter("page");
  if (strPage==null){
  currPage=1;
  }
  else{
  currPage=Integer.parseInt(strPage);
  if (currPage<1) currPage=1;
  }
  pageCount=(rowCount+pageSize-1)/pageSize;
  if (currPage>pageCount) currPage=pageCount;

  int thepage=(currPage-1)*pageSize;
  int n=0;
  rs.absolute(thepage+1);
  while (n<(pageSize)&&!rs
  %>
  <%rs.close();
  rscount.close();
  stmt.close();
  stmtcount.close();
  conn.close();
  %>

  //下面是 第几页等
  <form name="sinfo" method="post" action="sbinfo_index.jsp?condition=<%=condition%>&type=<%=type%>" onSubmit="return testform(this)">
  第<%=currPage%>页 共<%=pageCount%>页 共<%=rowCount%>条
  <%if(currPage>1){%><a href="sbinfo_index.jsp?condition=<%=condition%>&type=<%=type%>">首页</a><%}%>
  <%if(currPage>1){%><a href="sbinfo_index.jsp?page=<%=currPage-1%>&condition=<%=condition%>&type=<%=type%>">上一页</a><%}%>
  <%if(currPage<pageCount){%><a href="sbinfo_index.jsp?page=<%=currPage+1%>&condition=<%=condition%>&type=<%=type%>">下一页</a><%}%>
  <%if(pageCount>1){%><a href="sbinfo_index.jsp?page=<%=pageCount%>&condition=<%=condition%>&type=<%=type%>">尾页</a><%}%>
  跳到<input type="text" name="page" size="4" style="font-size:9px">页
  <input type="submit" name="submit" size="4" value="GO" style="font-size:9px">
  </form>

  • 上一篇资讯: JSP如何防范SQL注入攻击
  • 网学推荐

    免费论文

    原创论文

    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号