程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 一個通用的JSP分頁程序

一個通用的JSP分頁程序

編輯:關於JSP

//本程序使用了一個類反射的類,可以自動將查詢出來的值填充到值對象裡。
//這個類可以參見ibm的文章:使用類反射機制簡化struts的開發.

package com.lyjWeb.wyhn.common;


import java.sql.*;
import com.lyjWeb.common.*;
import java.util.*;

public class Fenye {
 
 private Connection con=null;
 private String sql="";
 private String page="1";// 當前頁 
 private int i_page=1;//當前頁
 private int i_page_count=10;//每頁顯示條數
 private String nextpage,prepage,sumpage,sumcount;
 
 private String sql_select,sql_from,sql_where,sql_order;
 private String sql_pre="";
 private String sql_count=""; //count(*)語句
 private ResultSet rst=null;
 private PreparedStatement stm=null;
 
 private Collection result_c=null;
 
 private String s_null="無";
 
///////////////////////////輸入值///////////////////////////////
 public void setConnection(Connection con)
 {
  this.con=con;
 }

 public void setSql(String sql_select,String sql_from,String sql_where,String sql_order)
 {
  //this.sql=sql;
  this.sql_select=sql_select;
  this.sql_from=sql_from;
  this.sql_where=sql_where;
  this.sql_order=sql_order;
  this.sql_count="select count(*) " + sql_from + " " + sql_where;
  this.sql=sql_select + " " + sql_from + " " + sql_where + " " + sql_order;
 }
 
 public void setStm(PreparedStatement stm)
 {
  this.stm=stm;
 }
 
 public void setPage(String p)
 {
  if(p==null)
  {
   this.page="1";
    this.i_page=1;
  }
  else
  {
   p=p.trim();
   if(p.equals("")) p="1";
   this.page=p;
   this.i_page=Integer.parseInt(this.page);  
  }
  
 }
 
 public void setPageCount(int pcount)
 {
  this.i_page_count=pcount;
 }

 public void setSqlPre(String sqlpre)
 {
  this.sql_pre=sqlpre; 
 }

 public void setS_null(String s_null)
 {
  this.s_null=s_null;
 }
//////////////////////////////////////返回值/////////////////////////////////////////// 
 public ResultSet getRst()
 {
  return rst;
 }
 
 public String getPage()
 {
  return page;
 }

 public String getNextPage()
 {
  return nextpage;
 }
 
 public String getPrePage()
 {
  return prepage;
 }
 
 public String getSumPage()
 {
  return sumpage;
 }
 
 public String getCount()
 {
  return sumcount;
 }
 
 public Collection getCollection()
 {
  return result_c;
 }
 
////////////////////////////////////////操  作///////////////////////////////////////////////
 private String b_string,f_string;
 private String comsql;
 
 private void CountPage() throws Exception

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved