• 大小: 3.42MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-02
  • 语言: Java
  • 标签: web开发  

资源简介

web开发,通过JSP+Servlet+MySql实现网上汽车租赁系统以及汽车租赁系统的管理系统

资源截图

代码片段和文件信息

package cn.com.dao;

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

public class baseDao {
//增加driver驱动
protected static final String DRIVER=“com.mysql.jdbc.Driver“;
//设置数据库的连接地址URL
protected static final String URL=“jdbc:mysql://localhost:3306/db_rentcar“;
//数据库的用户名
protected static final String USERNAME=“root“;
//数据库的密码
protected static final String PASSWORD = “root“;


//创建数据库的连接对象
protected  static Connection conn;
//创建预编译SQL语句对象
protected PreparedStatement pstm;
//创建结果集对象
protected ResultSet rs;


//连接数据库
public static Connection  getConnection() throws Exception{
//加载驱动
Class.forName(DRIVER);
conn = DriverManager.getConnection(URL USERNAME PASSWORD);
return conn;

}
//释放资源
protected void closeAll () throws Exception{
if(rs != null){
rs.close();
}
if(pstm != null){
pstm.close();
}
if(conn.isClosed()==false && conn !=null){
conn.close();
}
}



}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-06-11 08:35  网上汽车租赁项目\
     文件       11639  2019-01-02 22:37  网上汽车租赁项目\db_rentcar.sql
     目录           0  2019-06-11 08:35  网上汽车租赁项目\HT_rentcar\
     文件         967  2019-01-02 16:37  网上汽车租赁项目\HT_rentcar\.classpath
     文件        1043  2018-12-18 14:19  网上汽车租赁项目\HT_rentcar\.project
     目录           0  2019-06-11 08:35  网上汽车租赁项目\HT_rentcar\.settings\
     文件         503  2018-12-18 14:19  网上汽车租赁项目\HT_rentcar\.settings\.jsdtscope
     文件         360  2019-01-02 08:54  网上汽车租赁项目\HT_rentcar\.settings\org.eclipse.core.resources.prefs
     文件         670  2019-01-02 16:37  网上汽车租赁项目\HT_rentcar\.settings\org.eclipse.jdt.core.prefs
     文件         482  2018-12-18 14:19  网上汽车租赁项目\HT_rentcar\.settings\org.eclipse.wst.common.component
     文件         305  2019-01-02 16:37  网上汽车租赁项目\HT_rentcar\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2018-12-18 14:19  网上汽车租赁项目\HT_rentcar\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2018-12-18 14:19  网上汽车租赁项目\HT_rentcar\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2019-06-11 08:35  网上汽车租赁项目\HT_rentcar\build\
     目录           0  2019-06-11 08:35  网上汽车租赁项目\HT_rentcar\build\classes\
     目录           0  2019-06-11 08:35  网上汽车租赁项目\HT_rentcar\build\classes\cn\
     目录           0  2019-06-11 08:35  网上汽车租赁项目\HT_rentcar\build\classes\cn\com\
     目录           0  2019-06-11 08:35  网上汽车租赁项目\HT_rentcar\build\classes\cn\com\dao\
     文件        1325  2019-01-02 16:37  网上汽车租赁项目\HT_rentcar\build\classes\cn\com\dao\baseDao.class
     文件         104  2019-01-02 16:37  网上汽车租赁项目\HT_rentcar\build\classes\cn\com\dao\CarDao.class
     文件         249  2019-01-02 16:37  网上汽车租赁项目\HT_rentcar\build\classes\cn\com\dao\EvaDao.class
     目录           0  2019-06-11 08:35  网上汽车租赁项目\HT_rentcar\build\classes\cn\com\dao\impl\
     文件        2768  2019-01-02 16:37  网上汽车租赁项目\HT_rentcar\build\classes\cn\com\dao\impl\EvaDaoImpl.class
     文件        2355  2019-01-02 16:37  网上汽车租赁项目\HT_rentcar\build\classes\cn\com\dao\impl\InforDaoImpl.class
     文件        4700  2019-01-02 17:16  网上汽车租赁项目\HT_rentcar\build\classes\cn\com\dao\impl\OrdersDaoImpl.class
     文件        1955  2019-01-02 16:37  网上汽车租赁项目\HT_rentcar\build\classes\cn\com\dao\impl\ProtectionDaoImpl.class
     文件        3259  2019-01-02 16:37  网上汽车租赁项目\HT_rentcar\build\classes\cn\com\dao\impl\ScarDaoImpl.class
     文件        4516  2019-01-02 16:37  网上汽车租赁项目\HT_rentcar\build\classes\cn\com\dao\impl\UserDaoImpl.class
     文件         278  2019-01-02 16:37  网上汽车租赁项目\HT_rentcar\build\classes\cn\com\dao\InformationDao.class
     文件         424  2019-01-02 16:37  网上汽车租赁项目\HT_rentcar\build\classes\cn\com\dao\OrdersDao.class
     文件         172  2019-01-02 16:37  网上汽车租赁项目\HT_rentcar\build\classes\cn\com\dao\ProtectionDao.class
............此处省略332个文件信息

评论

共有 条评论