分享
 
 
 

JSP分页

王朝学院·作者佚名  2009-11-18
窄屏简体版  字體: |||超大  

//实体类

package entity;

public class note {

private int id;

private String title;

private String author;

private String content;

public note(){}

public note(String title,String author,String content)

{

this.title=title;

this.author=author;

this.content=content;

}

public note(int id,String title,String author,String content)

{

this.id=id;

this.title=title;

this.author=author;

this.content=content;

}

public String getAuthor() {

return author;

}

public void setAuthor(String author) {

this.author = author;

}

public String getContent() {

return content;

}

public void setContent(String content) {

this.content = content;

}

public int getId() {

return id;

}

public void setId(int id) {

this.id = id;

}

public String getTitle() {

return title;

}

public void setTitle(String title) {

this.title = title;

}

}

//连接数据库的基类

package dao;

import java.sql.*;

public abstract class BaseJdbcDao {

private static final String DBDRIVER = "com.microsoft.sqlserver.jdbc.SQLServerDriver";

private static final String DBURL = "jdbc:sqlserver://localhost:1433;DataBaseName=notetest";

private static final String DBUSER="sa";

private static final String DBPASS="sa";

protected Connection conn=null;

protected Statement stmt=null;

protected PreparedStatement pstmt=null;

protected ResultSet rst=null;

public Connection getConn()

{

try{

Class.forName(DBDRIVER);

conn=DriverManager.getConnection(DBURL,DBUSER,DBPASS);

// System.out.println("连接成功");

}catch(ClassNotFoundException e)

{

System.out.println("没有找到驱动");

e.getMessage();

}catch(SQLException e)

{

System.out.println("数据库联接失败");

e.getMessage();

}finally

{

return conn;

}

}

public void CloseAll()

{

if(rst!=null)

{

try{

rst.close();

}catch(SQLException e)

{

e.toString();

}

}

if(pstmt!=null)

{

try{

pstmt.close();

}catch(SQLException e)

{

e.toString();

}

}

if(stmt!=null)

{

try{

stmt.close();

}catch(SQLException e)

{

e.toString();

}

}

if(conn!=null)

{

try{

conn.close();

}catch(SQLException e)

{

e.toString();

}

}

}

}

//业务类

package dao;

import java.sql.*;

import java.util.*;

import entity.note;

public class noteDao extends BaseJdbcDao{

int count=0;

//得到所有记录数

public int getNoteCount()

{

String sql1="select count(*) from note";

int pageCount=0;

conn=super.getConn();

try{

pstmt=conn.prepareStatement(sql1);

rst=pstmt.executeQuery();

rst.next();

count=rst.getInt(1);

}catch(SQLException e)

{

e.toString();

}finally

{

super.CloseAll();

}

return count;

}

//分页显示

public List ShowNotesByPage(int page,int pageSize)

{

List listnote=new ArrayList();

note nn=null;

int preCount = pageSize*(page-1);

int pageCount=0;

String sql="select top "+pageSize+" * from note where id not in (select top "+preCount+" id from note order by id desc) order by id desc";

conn=super.getConn();

try{

if(count%pageSize==0){

pageCount=count/pageSize;

}

else

{

pageCount=count/pageSize+1;

}

pstmt=conn.prepareStatement(sql);

rst=pstmt.executeQuery();

while(rst.next())

{

nn=new note();

nn.setId(rst.getInt("id"));

nn.setTitle(rst.getString("title"));

nn.setAuthor(rst.getString("author"));

nn.setContent(rst.getString("content"));

listnote.add(nn);

}

}catch(SQLException e)

{

e.toString();

}finally

{

super.CloseAll();

}

return listnote;

}

}

//页面中的代码

<%@ page language="java" import="java.util.*,entity.*,dao.*" pageEncoding="gbk"%>

<%

String path = request.getContextPath();

String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head>

<base href="<%=basePath%>">

<title>My JSP 'showListNotes.jsp' starting page</title>

<meta http-equiv="pragma" content="no-cache">

<meta http-equiv="cache-control" content="no-cache">

<meta http-equiv="expires" content="0">

<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">

<meta http-equiv="description" content="This is my page">

<!--

<link rel="stylesheet" type="text/css" href="styles.css">

-->

</head>

<body>

<h1>所有留言</h1>

<%

List list=new ArrayList();

note nn=null;

noteDao notedao=new noteDao();

int count=notedao.getNoteCount();

int pageSize =5;

int currentPage = 1;

int pagecount;

//得到总共的页数。

if(count%pageSize==0)

{

pagecount=count/pageSize;

}

else{

pagecount=count/pageSize+1;

}

String pager = request.getParameter("page");

if(pager!=null)

{

currentPage = Integer.parseInt(pager);

}

//给上一页(prepage),下一页(nextpage)赋值。保障传递的page不是-1,-2,等等不符合条件的值。

int prepage=currentPage;

int nextpage=currentPage;

if(currentPage>1)

{

prepage=currentPage-1;

}

if(currentPage<pagecount)

{

nextpage=currentPage+1;

}

list=notedao.ShowNotesByPage(currentPage,pageSize);

%>

<table border="1">

<tr>

<td>标题</td>

<td>作者</td>

<td>内容</td>

</tr>

<%

for(int i=0;i<list.size();i++)

{

nn=(note)list.get(i);

%>

<tr>

<td><%=nn.getTitle() %></td>

<td><%=nn.getAuthor() %></td>

<td><%=nn.getContent() %></td>

</tr>

<%

}

%>

</table>

//传递page参数

<a href="showListNotes.jsp?page=<%=prepage %>">上一页</a>

<a href="showListNotes.jsp?page=<%=nextpage %>">下一页</a>

</body>

</html>

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有