資源簡介
之前要積分的刪不了只能重新上傳咯,只有源碼

代碼片段和文件信息
package?com.newclan.bbs;
import?java.sql.Connection;
import?java.sql.DriverManager;
import?java.sql.SQLException;
/**
?*?@author?Administrator
?*?
?*/
public?class?DB?{
public?static?String?dbtype?=?““;
/**k
?*?@return?返回數據庫連結,Connection對象
?*/
//@SuppressWarnings(“unchecked“)
public?static?Connection?getConnection()?{
Connection?conn?=?null;
try?{?
//?連接ODBC數據源
String?driver?=?“com.mysql.jdbc.Driver“;
String?connectString?=?“jdbc:mysql://localhost:3306/one?useunicode=ture&characterEncoding=UTF-8“;
String?username?=?“root“;
String?password?=?““;
Class.forName(driver).newInstance();
conn?=?DriverManager.getConnection(connectString?username
password);
//?建立連結
}?catch?(SQLException?e)?{//?捕獲異常
e.printStackTrace();
}?catch?(Exception?e)?{//?捕獲異常
e.printStackTrace();
}
return?conn;
}
/**
?*?關閉數據庫連接對象
?*?
?*?@param?conn
?*/
public?static?void?closeConnection(Connection?conn)?{
try?{
conn.close();?//?關閉連接
}?catch?(SQLException?ex)?{
ex.printStackTrace();
}
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????567??2013-05-24?14:07??onlineChat\.classpath
?????文件???????1036??2012-10-26?08:51??onlineChat\.project
?????文件????????360??2012-10-26?08:51??onlineChat\.settings\.jsdtscope
?????文件????????129??2013-11-11?18:42??onlineChat\.settings\org.eclipse.core.resources.prefs
?????文件????????330??2012-10-26?08:51??onlineChat\.settings\org.eclipse.jdt.core.prefs
?????文件????????209??2012-10-26?08:51??onlineChat\.settings\org.eclipse.jst.common.project.facet.core.prefs
?????文件????????412??2012-10-26?08:51??onlineChat\.settings\org.eclipse.wst.common.component
?????文件????????229??2012-10-26?08:51??onlineChat\.settings\org.eclipse.wst.common.project.facet.core.xm
?????文件?????????49??2012-10-26?08:51??onlineChat\.settings\org.eclipse.wst.jsdt.ui.superType.container
?????文件??????????6??2012-10-26?08:51??onlineChat\.settings\org.eclipse.wst.jsdt.ui.superType.name
?????文件???????1485??2014-05-20?11:11??onlineChat\build\classes\com\newclan\bbs\DB.class
?????文件???????1152??2014-05-20?11:11??onlineChat\build\classes\com\useBean\AdminEdit.class
?????文件????????954??2014-05-20?11:11??onlineChat\build\classes\com\useBean\UserInfo.class
?????文件???????1162??2013-05-24?14:09??onlineChat\src\com\newclan\bbs\DB.java
?????文件????????691??2013-11-12?10:33??onlineChat\src\com\useBean\AdminEdit.java
?????文件????????548??2013-11-08?17:38??onlineChat\src\com\useBean\UserInfo.java
?????文件?????????39??2012-10-26?08:51??onlineChat\WebContent\me
?????文件????????583??2014-05-20?11:48??onlineChat\WebContent\one.sql
?????文件?????437356??2008-08-03?22:02??onlineChat\WebContent\WEB-INF\lib\antlr-2.7.6rc1.jar
?????文件??????61562??2008-08-03?22:02??onlineChat\WebContent\WEB-INF\lib\commons-io.jar
?????文件??????37960??2008-08-03?22:02??onlineChat\WebContent\WEB-INF\lib\commons-logging-1.0.4.jar
?????文件?????802494??2008-08-03?22:02??onlineChat\WebContent\WEB-INF\lib\freemarker-2.3.8.jar
?????文件??????88767??2013-05-30?16:04??onlineChat\WebContent\WEB-INF\lib\jsp-api.jar
?????文件?????495944??2012-10-26?08:52??onlineChat\WebContent\WEB-INF\lib\mysql-connector-java-5.1.0-bin.jar
?????文件?????168081??2008-08-03?22:02??onlineChat\WebContent\WEB-INF\lib\ognl-2.6.11.jar
?????文件??????92621??2008-08-03?22:02??onlineChat\WebContent\WEB-INF\lib\servlet-api.jar
?????文件????2328673??2008-08-03?22:02??onlineChat\WebContent\WEB-INF\lib\struts2-core-2.0.11.jar
?????文件?????456027??2008-08-03?22:02??onlineChat\WebContent\WEB-INF\lib\xwork-2.0.4.jar
?????文件????????855??2013-11-11?18:43??onlineChat\WebContent\WEB-INF\web.xm
?????文件???????7126??2013-11-11?18:21??onlineChat\WebContent\WebRoot\admin.jsp
............此處省略1787個文件信息
評論
共有 條評論