資源簡介
能夠?qū)崿F(xiàn)基本的登陸,注冊,私聊,群聊,歷史信息查看
代碼片段和文件信息
package?connector;
import?java.sql.Connection;
import?java.sql.DriverManager;
import?java.sql.PreparedStatement;
import?java.sql.SQLException;
import?java.sql.Statement;
public?class?DatabaseConnection?{
private?static?Connection?connection;
public?static?Connection?getConnection()?throws?Exception{
String?driverName?=?“com.mysql.jdbc.Driver“;
String?url?=?“jdbc:mysql://localhost:3306/chat?useUnicode=true&characterEncoding=utf-8“;
String?name?=?“root“;
String?pwd?=?“root“;
Class.forName(driverName);
connection?=?DriverManager.getConnection(url?name?pwd);
return?connection;
}
public?static?Statement?getStatement()?throws?Exception{
return?getConnection().createStatement();
}
public?static?PreparedStatement?getPreparedStatement(
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-06-29?22:23??qqtest\
?????文件?????????408??2018-06-28?02:46??qqtest\.classpath
?????文件?????????382??2018-06-25?19:07??qqtest\.project
?????目錄???????????0??2018-06-29?22:23??qqtest\.settings\
?????文件??????????51??2018-06-25?19:07??qqtest\.settings\org.eclipse.core.resources.prefs
?????文件?????????598??2018-06-25?19:07??qqtest\.settings\org.eclipse.jdt.core.prefs
?????文件??????????88??2018-06-29?13:32??qqtest\abc.txt
?????目錄???????????0??2018-06-29?22:23??qqtest\bin\
?????目錄???????????0??2018-06-29?22:23??qqtest\bin\connector\
?????文件????????1529??2018-06-29?03:57??qqtest\bin\connector\Databa
?????目錄???????????0??2018-06-29?22:23??qqtest\bin\dao\
?????文件?????????745??2018-06-29?10:40??qqtest\bin\dao\ISearchDao.class
?????文件????????6713??2018-06-29?10:40??qqtest\bin\dao\SearchDao.class
?????目錄???????????0??2018-06-29?22:23??qqtest\bin\entity\
?????文件????????7649??2018-06-29?17:03??qqtest\bin\entity\Entity.class
?????文件????????1584??2018-06-29?17:03??qqtest\bin\entity\Message.class
?????文件????????2309??2018-06-29?17:03??qqtest\bin\entity\User.class
?????目錄???????????0??2018-06-29?22:23??qqtest\bin\fr
?????文件?????????935??2018-06-29?17:03??qqtest\bin\fr
?????文件????????3169??2018-06-29?17:03??qqtest\bin\fr
?????文件????????1806??2018-06-29?17:03??qqtest\bin\fr
?????文件?????????760??2018-06-29?17:03??qqtest\bin\fr
?????文件?????????757??2018-06-29?17:03??qqtest\bin\fr
?????文件?????????841??2018-06-29?17:03??qqtest\bin\fr
?????文件????????5000??2018-06-29?17:03??qqtest\bin\fr
?????文件?????????781??2018-06-29?17:03??qqtest\bin\fr
?????文件?????????751??2018-06-29?17:03??qqtest\bin\fr
?????文件????????4967??2018-06-29?17:03??qqtest\bin\fr
?????目錄???????????0??2018-06-29?22:23??qqtest\bin\test\
?????文件????????1498??2018-06-29?17:38??qqtest\bin\test\Client_more$1.class
?????文件????????2530??2018-06-29?22:23??qqtest\bin\test\Client_more$2$1.class
............此處省略46個文件信息
評論
共有 條評論