mysql的分页怎么不对_jsp+mysql分页显示我的怎么不对啊?显示始终不对!
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
My JSP 'wel.jsp' starting page登陸成功!恭喜恭喜!
返回重新登錄
用戶信息列表
//定義分也會(huì)用到的四個(gè)分頁
int pageSize=3;
int pageNow=1; //默認(rèn)顯示第一頁
int rowCount=0;
int pageCount=0;//通過pageSize和rowCount得到的
//查詢得到rowCount
//1.加載驅(qū)動(dòng)
Class.forName("com.mysql.jdbc.Driver");
//2.得到連接
Connection ct=DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/test","root","198673");
//3.創(chuàng)建Statment
Statement sm=ct.createStatement();
//4.查詢
ResultSet rs=sm.executeQuery("select count(*) from users ");
//必須要rs.next(),否則痛不欲生
if(rs.next())
{
rowCount=rs.getInt(1);
}
//計(jì)算pageCount
if(rowCount%pageSize==0)
{
pageCount=rowCount/pageSize;
}else{
pageCount=rowCount/pageSize+1;
}
//查詢需要顯示的記錄,注意是在mysql中
rs=sm.executeQuery("select passwd from users limit"+(pageNow-1)*pageSize+","+pageSize);
//顯示
%>
while(rs.next()){
%>
}
%>
%>
展開
總結(jié)
以上是生活随笔為你收集整理的mysql的分页怎么不对_jsp+mysql分页显示我的怎么不对啊?显示始终不对!的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: axure 输入框默认灰色字_Axure
- 下一篇: java如何添加自定义的图片_java代