• 大小: 2.72MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-29
  • 语言: Java
  • 标签: java  bbs论坛  源码  

资源简介

BBS论坛源码,用于毕业设计,一个较为完善的bbs论坛系统,其中包含了mysql数据库的脚本,还有页面的html文件,jsp文件,java源码可通过反编译获取,适合java新手进行模仿学习! java...

资源截图

代码片段和文件信息

package net;

import java.util.*;
import java.text.*;
import java.lang.*;
import sun.io.*;

public class ds
{

public static long makeID ( int uid )
{
//用户占5位
uid += 10000 ;

//时间占9位:秒,去掉第一位
java.util.Date time = new java.util.Date();
long second = time.getTime() / 1000 ;
String str = second + ““ ;
str = str.substring(1str.length());

//群发占5位
str = uid + str + 10000 ;
          
return Long.parseLong(str);
}

/**把null转化为““*/
public static String toString(String str)
{
if(str==null)str = ““;
if(str.equals(“null“))str = ““;
str = str.trim();
return str;
}

/**转换编码*/
public static String toGBK(String str)
{
try 
{
if(str==null)
str = ““;
else
str=new String(str.getBytes(“ISO-8859-1“)“GBK“); 
}catch (Exception e) {System.out.println(“DealString::toGBK(String)运行时出错:错误为:“+e);}
return str;
}

public static String toMKByte(int size)
{
if(size>(1024*1024)){return ((float)size/(1024*1024)+““).substring(04)+“MB“;}
else if(size>1024){return ((float)size/1024+““).substring(04)+“KB“;}
else return size+“B“;
}

/**UTF8*/
public static String toUtf8String(String src)
{
byte[] b = src.getBytes();
char[] c = new char[b.length];
for(int i=0;i {
c[i] = (char)(b[i]&0x00FF);
}
return new String(c);
}

public static String toASCII(String str)
{
try 
{
if(str==null)
str = ““;
else 
str=new String(str.getBytes(“GBK“)“ISO-8859-1“); 
}catch (Exception e) {System.out.println(“DealString::toGBK(String)运行时出错:错误为:“+e);}
return str;
}
/**分割字符串*/
public static String[] splitStr(String strchar c)
{
str+=c;
int n=0;
for(int i=0;i {
if(str.charAt(i)==c)n++;
}

String out[] = new String[n];

for(int i=0;i {
int index = str.indexOf(c);
out[i] = str.substring(0index);
str = str.substring(index+1str.length());
}
return out;
}

/**取得系统时间*/
public static String getDateTime()
{
java.text.SimpleDateFormat f = new java.text.SimpleDateFormat(“yyyy-MM-dd HH:mm:ss“);
String time = f.format(new java.util.Date());
return time;
}

/**替换字符串*/
public static String Replace(String source String oldString String newString)

       StringBuffer output = new StringBuffer(); 

       int lengthOfSource = source.length();   // 源字符串长度 
       int lengthOfOld = oldString.length();   // 老字符串长度 
       int posStart = 0;   // 开始搜索位置 
       int pos;            // 搜索到老字符串的位置 

       while ((pos = source.indexOf(oldString posStart)) >= 0) { 
           output.append(source.substring(posStart pos)); 
           output.append(newString); 
           posStart = pos + lengthOfOld; 
       } 
       if (posStart < lengthOfSource) { 
           output.append(source.substring(posStart)); 
       } 
       return output.toString(); 
}

/**取得两个日期的天数之差*/
public static long g

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-03-10 12:30  database\
     文件     1264128  2005-03-07 13:22  database\dat.dat
     文件       25916  2005-03-07 13:22  database\sql.sql
     目录           0  2019-03-10 12:30  web\
     目录           0  2019-03-10 12:30  web\forum\
     文件       15808  2005-03-07 13:20  web\forum\admin_board.jsp
     文件       10056  2005-03-07 13:20  web\forum\admin_boardaset.jsp
     文件        1193  2005-03-07 13:20  web\forum\admin_left.jsp
     文件        9702  2005-03-07 13:20  web\forum\admin_link.jsp
     文件         126  2005-03-07 13:20  web\forum\admin_logout.jsp
     文件        1300  2005-03-07 13:20  web\forum\admin_main.jsp
     文件        5842  2005-03-07 13:20  web\forum\admin_postings.jsp
     文件        2120  2005-03-07 13:20  web\forum\admin_updateboard.jsp
     文件        4062  2005-03-07 13:20  web\forum\admin_user.jsp
     文件        8735  2005-03-07 13:20  web\forum\admin_var.jsp
     文件        4345  2005-03-07 13:20  web\forum\admin_wealth.jsp
     文件       27302  2005-03-07 13:20  web\forum\announce.jsp
     文件        3412  2005-03-07 13:20  web\forum\announcements.jsp
     文件         591  2005-03-07 13:20  web\forum\checklogin.jsp
     文件         612  2005-03-07 13:20  web\forum\checkreg.jsp
     文件        1378  2005-03-07 13:20  web\forum\chklogin.jsp
     文件         597  2005-03-07 13:20  web\forum\cookie.jsp
     文件       20120  2005-03-07 13:20  web\forum\dispbbs.jsp
     文件        7322  2005-03-07 13:20  web\forum\dispuser.jsp
     文件        1328  2005-03-07 13:20  web\forum\download.jsp
     文件        1328  2005-03-07 13:20  web\forum\download.jsp.bak
     文件        1520  2005-03-07 13:20  web\forum\echklogin.jsp
     文件       27707  2005-03-07 13:20  web\forum\editannounce.jsp
     文件       15824  2005-03-07 13:20  web\forum\elist.jsp
     文件        2438  2005-03-07 13:20  web\forum\elogin.jsp
     目录           0  2019-03-10 12:30  web\forum\face\
............此处省略864个文件信息

评论

共有 条评论