亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術文章
文章詳情頁

JSP實現分頁效果

瀏覽:182日期:2022-06-07 14:04:50

本文實例為大家分享了JSP實現分頁的具體代碼,供大家參考,具體內容如下

咱們在瀏覽網頁的時候,當一個頁面的數據不足以展示完全所有的內容,一般都涉及到分頁,下一頁的功能該怎么實現呢?首先我們來分析一下:

那么直接上代碼:

這里需要備注一下,本次的代碼是在對三層優化之后進行操作的,所以我先把數據訪問層的重構代碼貼出來:

package org.ThreeLayer.DButil;import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException;import org.ThreeLayer.Entity.Student;public class DButil { public static final String driver = "com.mysql.cj.jdbc.Driver"; public static final String url = "jdbc:mysql://localhost:3306/zxy?&useSSL=false&serverTimezone=UTF-8&useSSL=false&serverTimezone = GMT"; public static final String username = "root"; public static final String password = "zxy170518."; public static Connection connection = null;//鏈接數據庫 public static PreparedStatement pstmt=null;//執行sql語句  public static ResultSet rs=null;   public static Connection getConnection() throws SQLException, ClassNotFoundException { Class.forName(driver); return DriverManager.getConnection(url,username,password); }  public static int getTotalCount(String sql) { int count=0; try { pstmt=createPrepareStatement(sql, null); rs=pstmt.executeQuery(); if(rs.next()) { count=rs.getInt(1); } }catch(SQLException e) { e.printStackTrace(); }catch(ClassNotFoundException e) { e.printStackTrace(); }catch(Exception e) { e.printStackTrace(); }finally { closeAll(connection, pstmt, rs); } return count; }  public static PreparedStatement createPrepareStatement(String sql,Object[] obj) throws ClassNotFoundException, SQLException { pstmt=getConnection().prepareStatement(sql); if(obj!=null) { for(int i=0;i<obj.length;i++) { pstmt.setObject(i+1, obj[i]);//進行更新動作 } } return pstmt; }  public static boolean UpdateSQL(String sql,Object[] obj) { try  { pstmt=createPrepareStatement(sql, obj); int count=pstmt.executeUpdate(); if(count>0) { return true; } else { return false; } } catch (ClassNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); return false; } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); return false; }finally { closeAll(connection,pstmt,rs); } }   public static ResultSet FindSQL(String sql,Object[] obj) { try { pstmt=createPrepareStatement(sql, obj); rs=pstmt.executeQuery(); return rs; }catch(ClassNotFoundException e) { e.printStackTrace(); return rs; } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); return rs; }catch(Exception e) { e.printStackTrace(); return rs; } }  public static void closeAll(Connection connection,PreparedStatement pstmt,ResultSet rs) { try { if(connection!=null); connection.close(); if(pstmt!=null); pstmt.close(); if(rs!=null); rs.close(); } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); }catch(Exception e) { e.printStackTrace(); } }}

基本上就是普通的數據庫操作功能,很好懂,就不多解釋了;
對于數據訪問層的Dao:

public int getTotalCount()//查詢數據總數 { String sql="select count(1) from student"; return DButil.getTotalCount(sql); }  public List<Student> findStudentByPage(int currentPage,int pageSize)//currentPage:當前頁數;pageSize頁面所能容納的最大數據量 { String sql="select * from student limit ? , ?"; Object[] obj= {currentPage*pageSize,pageSize}; List<Student> students=new ArrayList<>(); ResultSet rs=DButil.FindSQL(sql, obj); try { while(rs.next()) { Student student=new Student(rs.getInt(1),rs.getString(2),rs.getString(3),rs.getInt(4)); students.add(student); } } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); }catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } return students; }

對于業務邏輯層:

Server:

public int getTotalCount() { return studentdao.getTotalCount(); }  public List<Student> findStudentByPage(int currentPage,int pageSize) { return studentdao.findStudentByPage(currentPage, pageSize); }

對于視圖層的后臺代碼:

Servlet:

package org.Three.Servlet;import java.io.IOException;import java.util.List;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import org.ThreeLayer.Entity.Page_S;import org.ThreeLayer.Entity.Student;import org.ThreeLayer.Server.Student_Server;public class findStudentByPage extends HttpServlet { protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { Student_Server studentS=new Student_Server(); // int currentPage=2;  Page_S pag=new Page_S();  String tmp=request.getParameter("currentPage"); if(tmp==null)//判斷是否為第一次進行訪問 { tmp="0"; }  int sum=studentS.getTotalCount(); pag.setTotalCount(sum);  int currentPage= Integer.parseInt(tmp); pag.setCurrentPage(currentPage);  String tmp2=request.getParameter("choose"); if(tmp2==null)//默認一頁3個內容 { tmp2="3"; }  int pageSize=Integer.parseInt(tmp2); pag.setPageSize(pageSize); List<Student> students =studentS.findStudentByPage(currentPage, pageSize); pag.setStudents(students); request.setAttribute("pag", pag); request.getRequestDispatcher("index.jsp").forward(request, response); System.out.print(students); System.out.print(sum); } protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { doGet(request, response); }}

還有一個實體類:Page:

package org.ThreeLayer.Entity;import java.util.List;public class Page_S {//為了不出現于重名,改了一下 private int currentPage; private int pageSize;//頁面大小,即頁面數據個數 private int totalCount;//總數據 private int totalPage;//總頁數 private List<Student> students; public Page_S() { } public Page_S(int currentPage, int pageSize, int totalCount, int totalPage, List<Student> students) { this.currentPage = currentPage; this.pageSize = pageSize; this.totalCount = totalCount; this.totalPage = totalPage; this.students = students; } public int getCurrentPage() { return currentPage; } public void setCurrentPage(int currentPage) { this.currentPage = currentPage; } public int getPageSize() { return pageSize; } public void setPageSize(int pageSize) { this.pageSize = pageSize; this.totalPage=this.totalCount%this.pageSize==0?this.totalCount/this.pageSize:this.totalCount/this.pageSize+1; } public int getTotalCount() { return totalCount; } public void setTotalCount(int totalCount) { this.totalCount = totalCount; } public int getTotalPage() { return totalPage; } public void setTotalPage(int totalPage) { this.totalPage = totalPage; } public List<Student> getStudents() { return students; } public void setStudents(List<Student> students) { this.students = students; }}

最后貼上index.jsp:

<%@page import="java.util.List"%><%@page import="org.ThreeLayer.Entity.Student"%><%@page import="org.ThreeLayer.Entity.Page_S"%><%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%><!DOCTYPE html><html><head><meta charset="UTF-8"><title>學生信息管理</title></head><body> <table border=1px> <tr> <th>學號</th> <th>姓名</th> <th>性別</th> <th>操作</th> </tr> <% Page_S pagg=(Page_S)request.getAttribute("pag"); for(Student student:pagg.getStudents()) { %> <tr> <th><a href="FindStudentById_Servlet?uid=<%=student.getId()%>" ><%=student.getId() %></a></th> <th><%=student.getName() %></th> <th><%=student.getSex() %></th> <th><a href="DeleteStudent_Servlet?uid=<%=student.getId()%>" >刪除</a></th> </tr> <% } %> </table> <a href="add.jsp" >增加</a> <% if(pagg.getCurrentPage()==0)//用戶位于首頁的時候 { %>  <a href="findStudentByPage?currentPage=<%=pagg.getCurrentPage()+1%>" >下一頁</a> <a href="findStudentByPage?currentPage=<%=pagg.getTotalPage()-1%>" >尾頁</a> <%  }else if(pagg.getCurrentPage()==pagg.getTotalPage()-1)//用戶位于尾頁的時候 { %> <a href="findStudentByPage?currentPage=0" >首頁</a> <a href="findStudentByPage?currentPage=<%=pagg.getCurrentPage()-1%>" >上一頁</a> <%  }else//用戶位于中間頁面的時候 { %> <a href="findStudentByPage?currentPage=0" >首頁</a> <a href="findStudentByPage?currentPage=<%=pagg.getCurrentPage()+1%>" >下一頁</a> <a href="findStudentByPage?currentPage=<%=pagg.getCurrentPage()-1%>" >上一頁</a> <a href="findStudentByPage?currentPage=<%=pagg.getTotalPage()-1%>" >尾頁</a> <% } %>  <br></body></html>

看一下效果圖:

首先看數據庫內容:

然后是首頁:

下一頁:

最后是尾頁:

總的說明一下:

首先對于功能的闡述,第一步計算總的數據量,然后規定默認容量大小為3,最終在jsp代碼中加上跟用戶進行交互的功能,即讓用戶選擇一頁多少內容(由于我寫的那個有點bug,就先不貼,等后面自己能完美實現之后,再更新),之后對前端數據進行打包,要思考的是,我們對于這個功能我們所需要的數據有哪些呢?首先,總數據量要吧?然后要存放總的數據內容吧?然后頁面大小需要吧?然后用戶所在頁面的那個頁面位置的數要吧?最后一個就是通過總數據量和頁面大小計算出來的總頁面數也需要吧?所以,一共就需要記錄5個屬性值,那就打包成一個JavaBean吧,前面代碼也貼出來了。最后要提一點,對于如果我第一次進行訪問頁面的時候,我應該是有一些屬性值是為null的,這樣是會報空指針異常的,那么就要進行一些小小的處理,哪些呢?比如如果用戶第一次進行訪問,系統是收不到用戶當前所在頁面的頁面數值的,那么就要判斷一下,(此處上代碼)如果是第一次進行訪問,那么就給與一個默認值0,也就是第一頁,那么就處理好了這個小問題了,諸如此類問題還有就是用戶在進行選擇一頁多少內容的時候,也是需要進行賦予一個默認值的,不然也會報空指針。然后對于web.xml文件內容的設置,首頁應該設置為實現分頁功能的Servlet,因為你每做一次翻頁或者首次訪問,雖然都是在index.jsp中,但是你需要把每次做完動作之后得到的新的內容進行請求轉發,這樣才能實現更新,不然程序會報錯。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持。

標簽: JSP
相關文章:
主站蜘蛛池模板: 久久本道久久综合伊人 | 国产身材极品喷水 在线播放 | 欧美日韩高清不卡免费观看 | 亚洲另类在线视频 | 香蕉免费一级视频在线观看 | 国产真实伦在线观看 | 91手机在线观看 | 成人亚洲国产精品久久 | 久热精品男人的天堂在线视频 | 国产大秀视频一区二区三区 | 精品综合久久久久久97超人 | 中国黄色一级毛片 | 久久精品视频免费 | 亚洲 欧美 清纯 校园 另类 | 成人区在线观看免费视频 | 中文字幕久久亚洲一区 | 女人洗澡一级特黄毛片 | 在线观看国产精美视频 | 国产激情视频在线 | 欧美久久久久久久一区二区三区 | 色香影院 | 久草在线视频精品 | www.毛片 | 午夜拍拍福利视频蜜桃视频 | 欧美一级片免费 | 害羞的清纯女神露脸在线视频 | 亚洲综合99| 免费成人毛片 | 欧美日中文字幕 | 欧美一级色| 国产成+人欧美+综合在线观看 | 黄色a一片| 亚洲精品国产精品乱码视色 | 亚洲午夜18 | 色视频国产 | 九九精品视频在线 | 黄色在线不卡 | 黄色日韩网站 | 免费一区在线 | 国产精品视频免费视频 | 欧美激情一区二区三级高清视频 |