(1)src下面新建一个file文件 名为jdbc.properties
driver=com.mysql.jdbc.Driver
jdbcUrl=jdbc:mysql://localhost:3306/jcg
user=root
password=
(2)src下新建Tools包,里面存放一个类 JDBCTools
public class JDBCTools {
public static Connection getConnection() throws Exception
{
//1. 准备连接数据库的4个字符串
String driver = null;
String jdbcUrl = null;
String user = null;
String password = null;
//1).创建Properties 对象
Properties properties = new Properties();
//2)。 获取jdbc.properties 对应的输入流
InputStream in =
JDBCTools.class.getClassLoader().getResourceAsStream("jdbc.properties");
//3). 加载2) 对应的输入流
properties.load(in);
//4). 具体决定user , password 等4个字符串
driver = properties.getProperty("driver");