资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

java分页sql代码 java分页显示

谁能给我个完整的java 分页代码 谢谢了

import java.sql.Connection;

创新互联拥有网站维护技术和项目管理团队,建立的售前、实施和售后服务体系,为客户提供定制化的网站建设、成都网站制作、网站维护、四川雅安电信机房解决方案。为客户网站安全和日常运维提供整体管家式外包优质服务。我们的网站维护服务覆盖集团企业、上市公司、外企网站、商城网站建设、政府网站等各类型客户群体,为全球数千家企业提供全方位网站维护、服务器维护解决方案。

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.util.Enumeration;

import javax.servlet.http.HttpServletRequest;

import com.lqh.dao.db.DBCon;

public class PageDAO {

public static final String Text = "text";

public static final String Image = "image";

public static final String BbsText = "bbstext";

public static final String BbsImage = "bbsimage";

private HttpServletRequest request;

private int currentpage = 1; // 当前是第几页

private int pagecount = 0; // 一共有多少页

private int rscount = 0; // 一共有多少行

private int pagesize = 10; // 每页有多少行[默认为20行]

public PageDAO(HttpServletRequest request) {

this.request = request;

}

public int getCurrentpage() {

return currentpage;

}

public void setCurrentpage(int currentpage) {

this.currentpage = currentpage;

}

public int getPagecount() {

return pagecount;

}

public void setPagecount(int pagecount) {

this.pagecount = pagecount;

}

public int getPagesize() {

return pagesize;

}

public void setPagesize(int pagesize) {

this.pagesize = pagesize;

}

public int getRscount() {

return rscount;

}

public void setRscount(int rscount) {

this.rscount = rscount;

}

/**

* 传入SQL语句获取总记录数

*/

public int getRsCountForRs(String sql) {

Connection conn = null;

PreparedStatement ps = null;

ResultSet rs = null;

DBCon dbcon=new DBCon();

try {

conn = dbcon.getConn();

ps = conn.prepareStatement(sql);

rs = ps.executeQuery();

if (rs.next()) {

rs.last();

this.rscount = rs.getRow();

} else {

this.rscount = 0;

}

} catch (Exception ex) {

ex.printStackTrace();

this.rscount = 0;

} finally {

dbcon.tryClose(rs, ps, conn);

}

return this.rscount;

}

public int getRsCountForSQL(String sql) {

Connection conn = null;

PreparedStatement ps = null;

ResultSet rs = null;

DBCon dbcon=new DBCon();

try {

conn = dbcon.getConn();

ps = conn.prepareStatement(sql);

rs = ps.executeQuery();

if (rs.next()) {

this.rscount = rs.getInt("rscount");

} else {

this.rscount = 0;

}

} catch (Exception ex) {

ex.printStackTrace();

this.rscount = 0;

} finally {

dbcon.tryClose(rs, ps, conn);

}

return this.rscount;

}

/**

* 获取总页数

*

* @return int

*/

public int getPageCount() {

try {

this.pagecount = ((this.rscount - 1) / this.pagesize) + 1;

} catch (Exception ex) {

this.pagecount = 0;

}

return this.pagecount;

}

/**

* 获取当前页码的设置

*

* @return int

*/

public int getCurrentPage() {

try {

if (this.request.getParameter("currentpage") != null

Integer.parseInt(this.request

.getParameter("currentpage")) 1) {

this.currentpage = Integer.parseInt(this.request

.getParameter("currentpage"));

} else {

this.currentpage = 1;

}

} catch (Exception ex) {

this.currentpage = 1;

}

return this.currentpage;

}

/**

* 分页工具条

*

* @param fileName

* String

* @return String

*/

public String pagetool(String flag) {

StringBuffer str = new StringBuffer();

String url = this.getParamUrl();

int ProPage = this.currentpage - 1;

int Nextpage = this.currentpage + 1;

// 文字的分页

if (flag.equals(PageDAO.Text)) {

str.append("form method='post' name='pageform' action=''");

str

.append("table style='color: windowframe' width='100%' border='0' cellspacing='0' cellpadding='0'");

str.append("tr");

str.append("td width='20%'/td");

str.append("td height='26'");

str.append("共有记录" + this.rscount + "条 ");

str.append("共" + this.pagecount + "页 ");

str.append("每页" + this.pagesize + "记录 ");

str.append("现在" + this.currentpage + "/" + this.pagecount + "页");

str.append("/tdtd");

if (this.currentpage 1) {

str.append("a href='" + url + "currentpage=1'首页/a");

str.append(" ");

str.append("a href='" + url + "currentpage=" + ProPage

+ "'上一页/a");

str.append(" ");

} else {

str.append("首页");

str.append(" ");

str.append("上一页");

str.append(" ");

}

if (this.currentpage this.pagecount) {

str.append("a href='" + url + "currentpage=" + Nextpage

+ "'下一页/a");

str.append(" ");

} else {

str.append("下一页");

str.append(" ");

}

if (this.pagecount 1 this.currentpage != this.pagecount) {

str.append("a href='" + url + "currentpage=" + pagecount

+ "'尾页/a");

str.append(" ");

} else {

str.append("尾页");

str.append(" ");

}

str.append("转到");

str

.append("select name='currentpage' onchange='javascript:ChangePage(this.value);'");

for (int j = 1; j = pagecount; j++) {

str.append("option value='" + j + "'");

if (currentpage == j) {

str.append("selected");

}

str.append("");

str.append("" + j + "");

str.append("/option");

}

str.append("/select页");

str.append("/tdtd width='3%' /td/tr/table");

str.append("script language='javascript'");

str.append("function ChangePage(testpage){");

str.append("document.pageform.action='" + url

+ "currentpage='+testpage+'';");

str.append("document.pageform.submit();");

str.append("}");

str.append("/script");

str.append("/form");

} else if (flag.equals(PageDAO.Image)) {

/**

* 图片的分页

*/

} else if (flag.equals(PageDAO.BbsText)) {

/**

* 论坛形式的分页[直接以数字方式体现]

*/

str

.append("table width='100%' border='0' cellspacing='0' cellpadding='0'");

str.append("tr");

str.append("td width='3%' /td");

str.append("td height='26'");

str.append("记录" + this.rscount + "条  ");

str.append("共" + this.pagecount + "页  ");

str.append("每页" + this.pagesize + "记录  ");

str.append("现在" + this.currentpage + "/" + this.pagecount + "页");

str.append("/tdtd");

// 设定是否有首页的链接

if (this.currentpage 1) {

str.append("a href='" + url + "currentpage=1'首页/a");

str.append("  ");

}

// 设定是否有上一页的链接

if (this.currentpage 1) {

str.append("a href='" + url + "currentpage=" + ProPage

+ "'上一页/a");

str.append("   ");

}

// 如果总页数只有10的话

if (this.pagecount = 10) {

for (int i = 1; i = this.pagecount; i++) {

if (this.currentpage == i) {

str.append("font color=red[" + i

+ "]/font  ");

} else {

str.append("a href='" + url + "currentpage=" + i

+ "'" + i + "/a  ");

}

}

} else {

// 说明总数有超过10页

// 制定特环的开始页和结束页

int endPage = this.currentpage + 4;

if (endPage this.pagecount) {

endPage = this.pagecount;

}

int startPage = 0;

if (this.pagecount = 8 this.currentpage = 8) {

startPage = this.currentpage - 5;

} else {

// 表示从第一页开始算

startPage = 1;

}

System.out.println(startPage);

System.out.println(endPage);

for (int i = startPage; i = endPage; i++) {

if (this.currentpage == i) {

str.append("font color=red[" + i

+ "]/font  ");

} else {

str.append("a href='" + url + "currentpage=" + i

+ "'" + i + "/a  ");

}

}

}

// 设定是否有下一页的链接

if (this.currentpage this.pagecount) {

str.append("a href='" + url + "currentpage=" + Nextpage

+ "'下一页/a");

str.append("  ");

}

// 设定是否有尾页的链接

if (this.pagecount 1 this.currentpage != this.pagecount) {

str.append("a href='" + url + "currentpage=" + pagecount

+ "'尾页/a");

str.append("  ");

}

str.append("/tdtd width='3%' /td/tr/table");

} else if (flag.equals(PageDAO.BbsImage)) {

/**

* 论坛形式的分页[以图片的方式体现]

*/

// 设定分页显示的CSS

str.append("style");

str

.append("BODY {FONT-SIZE: 12px;FONT-FAMILY:宋体;WIDTH: 60%; PADDING-LEFT: 25px;}");

str

.append("DIV.meneame {PADDING-RIGHT: 3px; PADDING-LEFT: 3px; FONT-SIZE: 80%; PADDING-BOTTOM: 3px; MARGIN: 3px; COLOR: #ff6500; PADDING-TOP: 3px; TEXT-ALIGN: center}");

str

.append("DIV.meneame A {BORDER-RIGHT: #ff9600 1px solid; PADDING-RIGHT: 7px; BACKGROUND-POSITION: 50% bottom; BORDER-TOP: #ff9600 1px solid; PADDING-LEFT: 7px; BACKGROUND-IMAGE: url('"

+ this.request.getContextPath()

+ "/meneame.jpg'); PADDING-BOTTOM: 5px; BORDER-LEFT: #ff9600 1px solid; COLOR: #ff6500; MARGIN-RIGHT: 3px; PADDING-TOP: 5px; BORDER-BOTTOM: #ff9600 1px solid; TEXT-DECORATION: none}");

str

.append("DIV.meneame A:hover {BORDER-RIGHT: #ff9600 1px solid; BORDER-TOP: #ff9600 1px solid; BACKGROUND-IMAGE: none; BORDER-LEFT: #ff9600 1px solid; COLOR: #ff6500; BORDER-BOTTOM: #ff9600 1px solid; BACKGROUND-COLOR: #ffc794}");

str

.append("DIV.meneame SPAN.current {BORDER-RIGHT: #ff6500 1px solid; PADDING-RIGHT: 7px; BORDER-TOP: #ff6500 1px solid; PADDING-LEFT: 7px; FONT-WEIGHT: bold; PADDING-BOTTOM: 5px; BORDER-LEFT: #ff6500 1px solid; COLOR: #ff6500; MARGIN-RIGHT: 3px; PADDING-TOP: 5px; BORDER-BOTTOM: #ff6500 1px solid; BACKGROUND-COLOR: #ffbe94}");

str

.append("DIV.meneame SPAN.disabled {BORDER-RIGHT: #ffe3c6 1px solid; PADDING-RIGHT: 7px; BORDER-TOP: #ffe3c6 1px solid; PADDING-LEFT: 7px; PADDING-BOTTOM: 5px; BORDER-LEFT: #ffe3c6 1px solid; COLOR: #ffe3c6; MARGIN-RIGHT: 3px; PADDING-TOP: 5px; BORDER-BOTTOM: #ffe3c6 1px solid}");

str.append("/style");

str.append("div class=\"meneame\"");

// 判定是否有上一页

if (this.currentpage 1) {

str.append("a href='" + url

+ "currentpage=1' hidefocus=\"true\"首页/a");

str.append("   ");

str.append("a href='" + url + "currentpage=" + ProPage

+ "' hidefocus=\"true\"上一页/a");

str.append("   ");

} else {

str.append("span class=\"disabled\"首页/span");

str.append("  ");

str.append("span class=\"disabled\"上一页/span");

str.append("  ");

}

// 显示中间的图片

if (this.pagecount = 10) {

for (int i = 1; i = this.pagecount; i++) {

if (this.currentpage == i) {

str.append("span class=\"current\"" + i + "/span");

} else {

str.append("a href='" + url + "currentpage=" + i

+ "' hidefocus=\"true\"" + i

+ "/a  ");

}

}

} else {

// 说明总数有超过10页

// 制定特环的开始页和结束页

int endPage = this.currentpage + 4;

if (endPage this.pagecount) {

endPage = this.pagecount;

}

int startPage = 0;

if (this.pagecount = 8 this.currentpage = 8) {

startPage = this.currentpage - 5;

} else {

// 表示从第一页开始算

startPage = 1;

}

System.out.println(startPage);

System.out.println(endPage);

for (int i = startPage; i = endPage; i++) {

if (this.currentpage == i) {

str.append("span class=\"current\"" + i + "/span");

} else {

str.append("a href='" + url + "currentpage=" + i

+ "' hidefocus=\"true\"" + i

+ "/a  ");

}

}

}

// 判断下一页和尾页

if (this.currentpage this.pagecount) {

if (this.currentpage this.pagecount - 10) {

str.append("...");

str.append("a href='" + url + "currentpage="

+ (this.pagecount - 1) + "' hidefocus=\"true\""

+ (this.pagecount - 1) + "/a  ");

str.append("a href='" + url + "currentpage="

+ this.pagecount + "' hidefocus=\"true\""

+ this.pagecount + "/a  ");

}

str.append("a href='" + url + "currentpage=" + Nextpage

+ "' hidefocus=\"true\"下一页/a");

str.append("  ");

} else {

str.append("span class=\"disabled\"下一页/span");

str.append("  ");

}

if (this.pagecount 1 this.currentpage != this.pagecount) {

str.append("a href='" + url + "currentpage=" + pagecount

+ "' hidefocus=\"true\"尾页/a");

str.append("  ");

} else {

str.append("span class=\"disabled\"尾页/span");

str.append("  ");

}

str.append("/div");

}

return str.toString();

}

public String getParamUrl() {

String url = "";

url = this.request.getRequestURI().toString();

if (url.indexOf("?") == -1) {

url = url + "?";

}

String totalParams = "";

Enumeration params = this.request.getParameterNames();// 得到所有参数名

while (params.hasMoreElements()) {

String tempName = params.nextElement().toString();

String tempValue = this.request.getParameter(tempName);

if (tempValue != null !tempValue.equals("")

!tempName.equals("currentpage")) {

if (totalParams.equals("")) {

totalParams = totalParams + tempName + "=" + tempValue;

} else {

totalParams = totalParams + "" + tempName + "="

+ tempValue;

}

}

}

String totalUrl = url + totalParams;

return totalUrl;

}

}

ibatis java分页sql语句怎么写

so easy 你在IDAO中创建一个方法带两个参数,public List泛型 XXX(int page ,int max

Page);

DAO中实现XXX方法

this.getAqlMapClientTemplate.........queryForList("不介绍了",page

-1*maxPage,maxPage)

还有必须要有一个得到所有行数的方法,在IBATIS中写出,之后Action定义一个if的方法

int countRow == 得到的所有行

List list = 分页的方法

int countPage == 0

if(countRow%10==0) {

countPage = countRow/10

}else {

countPage = countRow/10+1

}

之后就是传到页面了

知道代码没用,主要要知道为什么这么写,第一 分页我们必须知道有多少个消息就是count,还要根据每页多少行数据来进行分页,很详细了 给最佳吧,还不懂就找我

java中数据库中实现分页的sql语句要求每页十条要查询的是第二页

1、首先preparedstatement是statement的子接口,属于预处理操作,与直接使用statement不同的是,preparedstatement在操作的时候,先在数据表中准备好了一条sql语句,但是sql语句的值暂时不设置,而是之后设置。

2、在使用statement的时候,要执行一条完整的失去了,在执行钱使用connection直接创建的。

3、如何获得preparedstatement,在connection接口中,通过preparedstatement(String sql)得到。

4、最后在日期输入的时候,正常情况都是使用java.util.date表示日期,在 preparedStatement中需要使用java.sql.date类型,如下图所示就完成了。

java db 的分页sql语句,有谁知道

import java.sql.Connection;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.util.ArrayList;

public class goodsBeanC {

//定义数据库变了

private ResultSet rs=null;

private PreparedStatement ps=null;

private Connection con=null;

private int pageSize = 6; //定义分页大小

private int rowCount = 0; //记录总数

private int pageCount = 0; //得到分页的页数

/**

* @param pageSize 每个分页的页面大小

* @param rowCount 数据库中记录的总数

* @param pageCount 得到可以分页的页数

* @return pageCount 分页的页数

*/

public int getPageCount(){

//得到数据库连接

con=new ConDB().getCon();

try {

//获取数据库中符合条件的记录的总数

ps=con.prepareStatement("select count(*) from goods");

rs=ps.executeQuery();

while(rs.next()){

rowCount=rs.getInt(1);

}

//计算可以分的页数

if(rowCount%pageSize==0){

pageCount=rowCount/pageSize;

}else{

pageCount=(rowCount/pageSize)+1;

}

} catch (SQLException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}finally{

this.close();

}

return pageCount;

}

/**

*

* @param goodsId 货物编号

* @return gb(goodsBean) 得到封装的货物信息

*/

public goodsBean getGoodsBean(String goodsId){

goodsBean gb=new goodsBean();

try {

con=new ConDB().getCon();

ps=con.prepareStatement("select * from goods where goodsId=?");

ps.setString(1, goodsId);

rs=ps.executeQuery();

while(rs.next()){

gb.setGoodsId(Integer.parseInt(rs.getString(1)));

gb.setGoodsName(rs.getString(2));

gb.setGoodsIntro(rs.getString(3));

gb.setGoodsPrice(rs.getFloat(4));

gb.setGoodsNum(rs.getInt(5));

gb.setPublish(rs.getString(6));

gb.setImages(rs.getString(7));

gb.setType(rs.getString(8));

}

} catch (SQLException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}finally{

this.close();

}

return gb;

}

/**

*

* @param pageNow 当前页数

* @return ArrayList 返回的数据库中的记录存放在al中

*/

public ArrayList getPageNow(int pageNow){

ArrayList al=new ArrayList();

con=new ConDB().getCon();

try {

ps=con.prepareStatement

("select top " + pageSize

+ " * from goods where goodsId not in(select top "

+ pageSize * (pageNow - 1) + " goodsId from goods)"); //分页的sql语句

rs=ps.executeQuery();

while(rs.next()){

//将每条结果的每个属性封装到gb中

goodsBean gb=new goodsBean();

gb.setGoodsId(Integer.parseInt(rs.getString(1)));

gb.setGoodsName(rs.getString(2));

gb.setGoodsIntro(rs.getString(3));

gb.setGoodsPrice(rs.getFloat(4));

gb.setGoodsNum(rs.getInt(5));

gb.setPublish(rs.getString(6));

gb.setImages(rs.getString(7));

gb.setType(rs.getString(8));

//将gb封装到ArrayList中

al.add(gb);

}

} catch (SQLException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}finally{

this.close();

}

return al;

}

/**

* 关闭数据库连接

*/

public void close() {

try {

if (rs != null)

rs.close();

if (ps != null)

ps.close();

if (con != null)

con.close();

} catch (SQLException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}


网站名称:java分页sql代码 java分页显示
文章位置:http://cdkjz.cn/article/dopjpch.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

业务热线:400-028-6601 / 大客户专线   成都:13518219792   座机:028-86922220