国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JSP > 正文

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

2020-07-27 21:24:14
字體:
供稿:網(wǎ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個(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" >首頁</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>

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

發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 宜州市| 锦屏县| 阆中市| 饶平县| 海兴县| 大荔县| 南充市| 白银市| 县级市| 九龙城区| 石棉县| 长治市| 南宁市| 灌云县| 永春县| 佳木斯市| 师宗县| 广元市| 华坪县| 吉水县| 来安县| 台中县| 泰和县| 县级市| 嘉黎县| 徐水县| 玉山县| 利辛县| 瑞金市| 光山县| 凉城县| 大港区| 寻乌县| 深泽县| 广宁县| 京山县| 左云县| 襄樊市| 伊川县| 天峨县| 襄城县|