资源简介

JSP项目 投票系统 系统开发 数据库开发 基于JSP开发的论坛系统

资源截图

代码片段和文件信息

package spage;
import java.sql.*;
public class ShowPage
{
private String str = ““;
//显示页号为p的一页(user)
public String printPage(ResultSet rs int p int size) 
{
  str = ““;
  //将访问游标定位到页号为p的页要显示的第一条记录的位置
  try {
   for(int k=0;k<(p-1)*size;k++)
rs.next();
  }
  catch(SQLException e) {   }
  for(int iPage=1; iPage<=size; iPage++) {
     str += printRow(rsiPagep);
     try {
 if(!rs.next()) break;
     }
     catch(Exception e) {   }
  }
  return str;
}
//显示单行记录(user)
public String printRow( ResultSet rs int iint p) 
{
String temp = ““;
try {
int id=rs.getInt(“userid“);
temp+=““;
temp+=““+rs.getString(“name“)+““;  
temp+=““+rs.getString(“sex“)+““;
temp+=““+rs.getString(“age“)+““;
int grade=rs.getInt(“rank“);
temp+=““;
switch (grade)
{
case 0:temp+=“普通用户“;break;
case 1:temp+=“1区斑竹“;break;
case 2:temp+=“2区斑竹“;break;
case 3:temp+=“3区斑竹“;break;
case 4:temp+=“管理员“;break;
}
temp+=““;
temp+=““+rs.getString(“pubnum“)+““;
temp += “修改“;
temp += “删除“;
    temp += ““;
}
catch(SQLException e) {   }
return temp;
}
//显示页号为p的一页(board)
public String artPrintPage(ResultSet rs int p int sizeboolean fboolean isex) 
{
  str = ““;
  //将访问游标定位到页号为p的页要显示的第一条记录的位置
  try {
   for(int k=0;k<(p-1)*size;k++)
rs.next();
  }
  catch(SQLException e) {   }
  for(int iPage=1; iPage<=size; iPage++) {
     str += artPrintRow(rsiPagepfisex);
     try {
 if(!rs.next()) break;
     }
     catch(Exception e) {   }
  }
  return str;
}
//显示单行记录(board)
public String artPrintRow( ResultSet rs int iint pboolean fboolean isex) 
{
String temp = ““;
try {
int id=rs.getInt(“id“);
temp+=““;
boolean ex=rs.getBoolean(“excellent“);
if(ex)
temp+=““;  
else
temp+=““;  
temp+=““+rs.getString(“title“)+““;  
temp+=“vascript:detailwin(“+rs.getString(“userid“)+“)‘>“+rs.getString(“name“)+““;
temp+=““+rs.getString(“reNum“)+““;
temp+=““+rs.getString(“pubtime“)+““;
if(f)
{
if(isex)
temp += “加精“;
else
temp += “从精华中删去“;
}
    temp += ““;
}
catch(SQLException e) {   }
return temp;
}
//显示页号为p的一页(article)
public String detailPage(ResultSet rs int p int sizeString logidboolean f) 
{
  str = ““;
  //将访问游标定位到页号为p的页要显示的第一条记录的位置
  

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        740  2005-08-03 13:43  论坛系统\forum\addex.jsp

     文件       1797  2005-07-25 18:08  论坛系统\forum\adduser.jsp

     文件       4827  2005-08-03 13:13  论坛系统\forum\board.jsp

     文件         86  2005-07-25 18:06  论坛系统\forum\check.jsp

     文件        129  2005-07-25 18:06  论坛系统\forum\checkadmin.jsp

     文件       1739  2005-07-25 18:09  论坛系统\forum\dealdelete.jsp

     文件       1365  2005-07-28 15:41  论坛系统\forum\dealdeleteuser.jsp

     文件       1468  2005-07-28 19:30  论坛系统\forum\dealpost.jsp

     文件       1646  2005-07-25 18:11  论坛系统\forum\dealupdate.jsp

     文件       1870  2005-07-25 18:07  论坛系统\forum\dealupdateuser.jsp

     文件        717  2005-08-03 13:44  论坛系统\forum\delex.jsp

     文件       3147  2005-08-03 13:33  论坛系统\forum\detail.jsp

     文件       2237  2005-08-01 16:22  论坛系统\forum\detailuser.jsp

     文件        170  2005-07-24 17:16  论坛系统\forum\error.jsp

     文件       4433  2005-08-03 13:27  论坛系统\forum\excellent.jsp

     文件       2752  2005-08-03 13:47  论坛系统\forum\forum.ldb

     文件     622592  2005-08-03 13:45  论坛系统\forum\forum.mdb

     文件       3809  2005-07-28 18:55  论坛系统\forum\home.jsp

     文件        861  2005-07-23 17:16  论坛系统\forum\login.jsp

     文件         68  2005-07-21 14:39  论坛系统\forum\logout.jsp

     文件       3260  2005-08-03 13:33  论坛系统\forum\manage.jsp

     文件       3644  2005-07-26 20:22  论坛系统\forum\post.jsp

     文件       3010  2005-07-26 20:28  论坛系统\forum\register.jsp

     文件        506  2005-07-23 16:54  论坛系统\forum\style.css

     文件       1287  2005-07-27 13:15  论坛系统\forum\top.jsp

     文件        694  2005-07-26 12:55  论坛系统\forum\toparticle.jsp

     文件       4851  2005-07-24 18:01  论坛系统\forum\update.jsp

     文件       5078  2005-07-31 13:44  论坛系统\forum\updateuser.jsp

     文件        932  2005-07-27 15:40  论坛系统\forum\verify.jsp

     文件        277  2005-01-28 18:51  论坛系统\forum\WEB-INF\web.xml

............此处省略105个文件信息

评论

共有 条评论