资源简介
.Net新闻发布系统+源代码+文档说明.Net新闻发布系统+源代码+文档说明.Net新闻发布系统+源代码+文档说明.Net新闻发布系统+源代码+文档说明.Net新闻发布系统+源代码+文档说明.Net新闻发布系统+源代码+文档说明.Net新闻发布系统+源代码+文档说明
代码片段和文件信息
package mypackage;
import java.sql.*;
public class ConnectionManager {
private static final String DATAbase_URL = “jdbc:mysql://localhost:3306/xuyang?characterEncoding=GB2312“;
private static final String DATAbase_USRE = “root“;
private static final String DATAbase_PASSWORD = “123456“;
/**
* 返回连接
*
* @return Connection
*/
public static Connection getConnection() {
Connection dbConnection = null;
try {
Class.forName(“com.mysql.jdbc.Driver“);
dbConnection = DriverManager.getConnection(DATAbase_URL
DATAbase_USRE DATAbase_PASSWORD);
} catch (Exception e) {
e.printStackTrace();
}
return dbConnection;
}
/**
* 关闭连接
*
* @param dbConnection
* Connection
*/
public static void closeConnection(Connection dbConnection) {
try {
if (dbConnection != null && (!dbConnection.isClosed())) {
dbConnection.close();
}
} catch (SQLException sqlEx) {
sqlEx.printStackTrace();
}
}
/**
* 关闭结果集
*/
public static void closeResultSet(ResultSet res) {
try {
if (res != null) {
res.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
}
/**
* 关闭语句
*/
public static void closeStatement(PreparedStatement pStatement) {
try {
if (pStatement != null) {
pStatement.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
....... 456729 2009-12-30 13:05 xinwen\xinwen\build\web\WEB-INF\lib\mysql-connector-java-3.1.13-bin.jar
文件 503 2009-12-30 20:32 xinwen\xinwen\build\web\WEB-INF\sun-web.xm
文件 490 2009-12-30 13:05 xinwen\xinwen\build\web\WEB-INF\web.xm
文件 748 2009-12-30 13:05 xinwen\xinwen\build\web\zhuye.jsp
文件 2156 2009-12-30 20:30 xinwen\xinwen\build\web\zhuye2.jsp
文件 933 2009-12-30 13:05 xinwen\xinwen\build\web\删除一级标题.jsp
文件 878 2009-12-30 20:23 xinwen\xinwen\build\web\删除二级标题.jsp
文件 1929 2009-12-30 13:05 xinwen\xinwen\build\web\发布.jsp
文件 1756 2009-12-30 13:05 xinwen\xinwen\build\web\发布一级标题.jsp
文件 1700 2009-12-30 20:23 xinwen\xinwen\build\web\发布二级标题.jsp
文件 1061 2009-12-30 20:19 xinwen\xinwen\build\web\标题管理.jsp
文件 1109 2009-12-30 13:05 xinwen\xinwen\build\web\管理员登录.jsp
文件 3493 2009-12-30 20:32 xinwen\xinwen\build.xm
文件 3676 2009-12-30 19:54 xinwen\xinwen\nbproject\ant-deploy.xm
文件 46380 2009-12-30 20:32 xinwen\xinwen\nbproject\build-impl.xm
文件 473 2009-12-30 20:32 xinwen\xinwen\nbproject\genfiles.properties
文件 1903 2009-12-30 20:32 xinwen\xinwen\nbproject\private\private.properties
文件 443 2009-12-30 20:32 xinwen\xinwen\nbproject\private\private.xm
文件 2317 2009-12-30 19:54 xinwen\xinwen\nbproject\project.properties
文件 925 2009-12-30 20:32 xinwen\xinwen\nbproject\project.xm
文件 25 2009-12-30 08:23 xinwen\xinwen\src\conf\MANIFEST.MF
文件 1393 2009-12-30 20:00 xinwen\xinwen\src\java\mypackage\ConnectionManager.java
文件 1227 2009-12-30 08:26 xinwen\xinwen\src\java\mypackage\FirstLevelti
文件 1988 2009-12-30 08:26 xinwen\xinwen\src\java\mypackage\FirstLeveti
文件 456729 2009-10-31 16:17 xinwen\xinwen\src\java\mypackage\mysql-connector-java-3.1.13-bin.jar
文件 1124 2009-12-30 08:26 xinwen\xinwen\src\java\mypackage\SecondLevelti
文件 3959 2009-12-30 20:23 xinwen\xinwen\src\java\mypackage\SecondLevelti
文件 1303 2009-12-30 13:00 xinwen\xinwen\web\check.jsp
文件 700 2009-12-30 20:24 xinwen\xinwen\web\delete second level.jsp
文件 685 2009-12-30 08:47 xinwen\xinwen\web\delete.jsp
............此处省略34个文件信息
- 上一篇:编译原理语法分析器实验报告.doc版
- 下一篇:飞信协议分析
评论
共有 条评论