jsp實(shí)現(xiàn)頁(yè)面分頁(yè)功能代碼
更新時(shí)間:2017年04月11日 17:31:43 作者:暮雪塵埃
經(jīng)??梢杂玫降膶?duì)頁(yè)面進(jìn)行分頁(yè),下面整理好的完整的頁(yè)面分頁(yè)代碼,各位朋友需要可以參考下
核心代碼:
<%@ 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 = "";
public static final String URL = "jdbc:mysql://localhost:3306/teachinfo";
public static final int PAGESIZE = 5;
int pageCount;
int curPage = 1;
%>
<%
//一頁(yè)放5個(gè)
String user = null;
String pass = null;
try{
Class.forName(DRIVER);
Connection con = DriverManager.getConnection(URL,USER,PASS);
String sql = "SELECT * FROM department";
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 departmentid = rs.getInt(1);
String departmentname = rs.getString(2);
count++;
%>
<tr>
<td><%=departmentid%></td>
<td><%=departmentname%></td>
</tr>
<%
}while(rs.next());
con.close();
}
catch(Exception e){
}
%>
</table>
<a href = "fenye.jsp?curPage=1" >首頁(yè)</a>
<a href = "fenye.jsp?curPage=<%=curPage-1%>" >上一頁(yè)</a>
<a href = "fenye.jsp?curPage=<%=curPage+1%>" >下一頁(yè)</a>
<a href = "fenye.jsp?curPage=<%=pageCount%>" >尾頁(yè)</a>
第<%=curPage%>頁(yè)/共<%=pageCount%>頁(yè)
</body>
</html>
本篇代碼希望各位朋友喜歡!
您可能感興趣的文章:
相關(guān)文章
JSP 頁(yè)面中使用FCKeditor控件(js用法)
FCKeditor是一個(gè)專門(mén)使用在網(wǎng)頁(yè)上屬于開(kāi)放源代碼的所見(jiàn)即所得文字編輯器。它志于輕量化,不需要太復(fù)雜的安裝步驟即可使用。2009-04-04
JSP自定義標(biāo)簽基礎(chǔ)知識(shí)學(xué)習(xí)
這篇文章主要為大家詳細(xì)介紹了JSP自定義標(biāo)簽基礎(chǔ)知識(shí),如何實(shí)現(xiàn)自定義標(biāo)簽,請(qǐng)參考本文進(jìn)行學(xué)習(xí)2016-03-03
將properties文件的配置設(shè)置為整個(gè)Web應(yīng)用的全局變量實(shí)現(xiàn)方法
下面小編就為大家?guī)?lái)一篇將properties文件的配置設(shè)置為整個(gè)Web應(yīng)用的全局變量實(shí)現(xiàn)方法。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2017-10-10
Struts2中實(shí)現(xiàn)web應(yīng)用的初始化實(shí)例詳解
這篇文章主要介紹了Struts2中實(shí)現(xiàn)web應(yīng)用的初始化實(shí)例詳解的相關(guān)資料,需要的朋友可以參考下2017-06-06
加快JDBC設(shè)計(jì)中JSP訪問(wèn)數(shù)據(jù)庫(kù)
加快JDBC設(shè)計(jì)中JSP訪問(wèn)數(shù)據(jù)庫(kù)...2006-10-10
jsp session.setAttribute()和session.getAttribute()用法案例詳解
這篇文章主要介紹了jsp session.setAttribute()和session.getAttribute()用法案例詳解,本篇文章通過(guò)簡(jiǎn)要的案例,講解了該項(xiàng)技術(shù)的了解與使用,以下就是詳細(xì)內(nèi)容,需要的朋友可以參考下2021-08-08

