最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

jsp實現(xiàn)頁面分頁功能代碼

 更新時間:2017年04月11日 17:31:43   作者:暮雪塵埃  
經(jīng)常可以用到的對頁面進行分頁,下面整理好的完整的頁面分頁代碼,各位朋友需要可以參考下

核心代碼:

<%@ 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;
%>
<%
	//一頁放5個
	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" >首頁</a>
<a href = "fenye.jsp?curPage=<%=curPage-1%>" >上一頁</a>
<a href = "fenye.jsp?curPage=<%=curPage+1%>" >下一頁</a>
<a href = "fenye.jsp?curPage=<%=pageCount%>" >尾頁</a>
第<%=curPage%>頁/共<%=pageCount%>頁

</body>
</html>

本篇代碼希望各位朋友喜歡!

相關(guān)文章

最新評論

宜春市| 双柏县| 天柱县| 绵竹市| 洛南县| 石楼县| 志丹县| 沾益县| 方城县| 科技| 远安县| 定州市| 曲靖市| 武乡县| 德化县| 崇左市| 临洮县| 永修县| 长顺县| 台北市| 台北县| 枞阳县| 邻水| 增城市| 中卫市| 华宁县| 罗田县| 吉安市| 武穴市| 辽宁省| 和龙市| 漳平市| 兰西县| 西城区| 霍州市| 扬中市| 河东区| 公安县| 民和| 普安县| 封开县|