资源简介

基于Java实现的贪吃蛇小游戏,包含用户注册和登录功能,下载即可使用

资源截图

代码片段和文件信息

package com.mooc.jdbcUtil;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

public class jdbcUtil {

private static final String dricerClass;
private static final String url;
private static final String username;
private static final String password;

static {
dricerClass = “com.mysql.jdbc.Driver“;
url = “jdbc:mysql:///jdbc_dome“;
username = “root“;
password = “root“;
}

/*
 * 加载数据库的方法
 */

public static void locadClass() throws ClassNotFoundException {

Class.forName(dricerClass);
}

/*
 * 获取数据库连接的方法
 */
public static Connection getConnection() throws Exception {

Connection conn = DriverManager.getConnection(url username password);

return conn;
}

/*
 * 关闭连接并释放资源的方法
 */
public static void result(Connection conn Statement stam) {

if (conn != null) {

try {
conn.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
conn = null;
}

if (stam != null) {

try {
stam.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
stam = null;
}
}

/*
 * 关闭连接并释放资源的方法
 */
public static void result(Connection conn Statement stam ResultSet rs) {

if (conn != null) {

try {
conn.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
conn = null;
}

if (stam != null) {

try {
stam.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
stam = null;
}
if (rs != null) {
try {
rs.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
rs = null;
}

}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-08-18 19:46  贪吃鬼\
     文件         379  2018-08-18 19:23  贪吃鬼\.classpath
     文件         385  2018-08-26 21:27  贪吃鬼\.project
     目录           0  2018-08-18 19:46  贪吃鬼\.settings\
     文件         598  2018-08-18 19:22  贪吃鬼\.settings\org.eclipse.jdt.core.prefs
     目录           0  2018-09-15 16:40  贪吃鬼\bin\
     目录           0  2018-09-15 16:40  贪吃鬼\bin\com\
     目录           0  2018-09-15 16:40  贪吃鬼\bin\com\mooc\
     目录           0  2018-09-15 16:40  贪吃鬼\bin\com\mooc\jdbcUtil\
     文件        1957  2018-11-12 21:25  贪吃鬼\bin\com\mooc\jdbcUtil\jdbcUtil.class
     目录           0  2018-09-15 16:54  贪吃鬼\bin\com\mooc\login\
     文件        2276  2018-11-12 21:32  贪吃鬼\bin\com\mooc\login\Login$1.class
     文件         855  2018-11-12 21:32  贪吃鬼\bin\com\mooc\login\Login$2.class
     文件         733  2018-11-12 21:32  贪吃鬼\bin\com\mooc\login\Login$3.class
     文件        3591  2018-11-12 21:32  贪吃鬼\bin\com\mooc\login\Login.class
     文件         873  2018-11-12 21:27  贪吃鬼\bin\com\mooc\login\Main$1.class
     文件        1909  2018-11-12 21:27  贪吃鬼\bin\com\mooc\login\Main$SnackMove.class
     文件        3362  2018-11-12 21:27  贪吃鬼\bin\com\mooc\login\Main.class
     文件        2287  2018-09-15 16:40  贪吃鬼\bin\com\mooc\login\Register$1.class
     文件         894  2018-09-15 16:40  贪吃鬼\bin\com\mooc\login\Register$2.class
     文件        3390  2018-09-15 16:40  贪吃鬼\bin\com\mooc\login\Register.class
     目录           0  2018-09-15 16:40  贪吃鬼\bin\images\
     文件        6667  2017-11-06 15:20  贪吃鬼\bin\images\98.gif
     文件        1755  2018-08-19 11:54  贪吃鬼\bin\images\btn1.png
     文件         595  2018-08-19 14:11  贪吃鬼\bin\images\exit.png
     文件         677  2018-08-19 17:37  贪吃鬼\bin\images\insist.png
     文件        9001  2018-08-19 09:47  贪吃鬼\bin\images\log.jpg
     文件      142943  2018-08-18 19:49  贪吃鬼\bin\images\mini.jpg
     文件       22021  2018-08-19 09:34  贪吃鬼\bin\images\psw.png
     文件         678  2018-08-19 14:11  贪吃鬼\bin\images\regier.png
     文件       21392  2018-08-19 09:34  贪吃鬼\bin\images\user.png
............此处省略31个文件信息

评论

共有 条评论