JSP實現分頁功能

來源:互聯網
上載者:User
  分頁須知知識點:

(1)JDBC2.0的可滾動結果集。

(2)HTTP GET請求。

一、可滾動結果集

Connection con  = DriverManager.getConnection();

PreparedStatement stmt = con.prepareStatement(sql,ResultSet.TYPE_FORWARD_ONLY,ResultSet.CONCUR_READ_ONLY);

ResultSet rs = stmt.executeQuery();

常用方法:

(1)rs.absolute(n);        可以將指標跳到第n行。

(2)rs.relative(n);           可以將指標相對向下或向上n行。

(3)rs.first();

(4)rs.last();

(5)int curRow = rs.getRow();    指標指向的當前行


二、功能實現分解1.計算結果的個數

rs.last();

int size = rs.getRow();

即可得到結果的個數。

2.得到需要分幾頁

如果一頁能夠放5條記錄,則

int pageCount = (size%5==0)?(size/5):(size/5+1);

即可獲得需要分幾頁。

3.控制一頁中規定顯示記錄個數

如果一頁能顯示5條記錄,可以通過使用count進行計數。

int count = 0;

do{

    if(count>=5) break;

    .....

    count++;

}while(rs.next());

通過break語句,能夠使其顯示到超過規定條目就跳出。

4.如何知道當前是第幾頁

通過HTTP get的特點,在地址欄中標明當前地址,如http://.......?curPage=1    表示現在是第一頁。

String tmp = request.getParameter("curPage");
if(tmp==null){
       tmp="1";
}
curPage = Integer.parseInt(tmp);

可以獲得當前頁。

注意:

rs.absolute(1);表示指向第一條記錄;

不存在rs.absolute(0);

rs.absolute((curPage-1)*PAGESIZE+1);      把結果集指標調整到當前頁應該顯示的記錄的開始.

比如如果一頁顯示5條記錄,當前頁是第二頁,則需要把指標調整到6,當前頁是第三頁,則需要把指標調整為11.

5.點擊首頁、上一頁、下一頁、尾頁的行為

<a href="multipage.jsp?curPage=<%curPage+1%>" >下一頁</a>

<a href="multipage.jsp?curPage=<%curPage-1%>" >上一頁</a>

<a href="multipage.jsp?curPage=<%pageCount%>" >尾頁</a>

<a href="multipage.jsp?curPage=1" >首頁</a>

6.為了儲存當前頁位置,則需要把當前頁位置設為全域變數。綜合代碼:
<%@ page contentType="text/html" pageEncoding="GB2312" language="java"%><%@ page import="java.sql.*"%><html><head><title>hello</title></head><body><table border="1" spacing="2"><%!public static final String DRIVER = "com.mysql.jdbc.Driver";public static final String USER = "root";public static final String PASS = "12345";public static final String URL = "jdbc:mysql://localhost:3306/MLDN";public static final int PAGESIZE = 5;int pageCount;int curPage = 1;%><%//一頁放5個String user = null;String pass = null;try{Class.forName(DRIVER);Connection con = DriverManager.getConnection(URL,USER,PASS);String sql = "SELECT empno,ename,job,hiredate,sal,comm FROM emp";PreparedStatement stat = con.prepareStatement(sql,ResultSet.TYPE_FORWARD_ONLY,ResultSet.CONCUR_READ_ONLY);ResultSet rs = stat.executeQuery();rs.last();int size = rs.getRow();pageCount = (size%PAGESIZE==0)?(size/PAGESIZE):(size/PAGESIZE+1);String tmp = request.getParameter("curPage");if(tmp==null){tmp="1";}curPage = Integer.parseInt(tmp);if(curPage>=pageCount) curPage = pageCount;boolean flag = rs.absolute((curPage-1)*PAGESIZE+1);out.println(curPage);int count = 0;do{if(count>=PAGESIZE)break;int empno = rs.getInt(1);String ename = rs.getString(2);String job = rs.getString(3);Date hiredate = rs.getDate(4);float sal = rs.getFloat(5);int comm = rs.getInt(6);count++;%><tr><td><%=empno%></td><td><%=ename%></td><td><%=job%></td><td><%=hiredate%></td><td><%=sal%></td><td><%=comm%></td></tr><%}while(rs.next());con.close();}catch(Exception e){}%></table><a href = "multipage.jsp?curPage=1" >首頁</a><a href = "multipage.jsp?curPage=<%=curPage-1%>" >上一頁</a><a href = "multipage.jsp?curPage=<%=curPage+1%>" >下一頁</a><a href = "multipage.jsp?curPage=<%=pageCount%>" >尾頁</a>第<%=curPage%>頁/共<%=pageCount%>頁</body></html>

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.