配置文件properties
在src文件下new一个file,命名为XXX.properties
jdbc.properties
配置文件mysql.drive=com.mysql.jdbc.Driver mysql.url=jdbc:mysql://49.232.23.173:33306/te>st?>useUnicode=true&characterEncoding=utf8&us>eSSL=false mysql.username=root mysql.password=root
// 类加载器,加载配置文件,获取当前配置文件的路径
ClassLoader classLoader = JdbcUtils.class.getClassLoader();
// 加载当前工程中的配置文件,指定名称
URL resource = classLoader.getResource("com/zr/jdbc.properties");
// 获取配置文件所在的真正位置
String path = resource.getPath();
System.out.println(path);
// 文件加载类,目的是读取里边的内容
Properties properties = new Properties();
1、步骤
- 导入驱动 jar 包 mysql-connector-java-5.1.37-bin.jar
- 注册驱动
- 获取数据库连接对象 Connection
- 定义 sql
- 获取执行 sql 语句的对象 Statement
- 执行 sql,接受返回结果
- 处理结果
- 释放资源
public class JdbcUtils {
private static Connection connection = null;
/**通过配置文件注册驱动*/
static{
//2. 注册驱动 确认要连的数据
try {
// 类加载器,加载配置文件,获取当前配置文件的路径
ClassLoader classLoader = JdbcUtils.class.getClassLoader();
// 加载当前工程中的配置文件,指定名称
URL resource = classLoader.getResource("com/zr/jdbc.properties");
// 获取配置文件所在的真正位置
String path = resource.getPath();
System.out.println(path);
// 文件加载类,目的是读取里边的内容
Properties properties = new Properties();
properties.load(new FileReader(path));
System.out.println(properties.get("mysql.drive"));
System.out.println(properties.get("mysql.url"));
System.out.println(properties.get("mysql.username"));
System.out.println(properties.get("mysql.password"));
Class.forName(properties.getProperty("mysql.drive"));
// 3、获取数据库连接对象 Connection
connection=DriverManager.getConnection(
properties.getProperty("mysql.url"),
properties.getProperty("mysql.username"),
properties.getProperty("mysql.password"));
} catch (ClassNotFoundException e) {
e.printStackTrace();
}catch (SQLException e) {
e.printStackTrace();
}catch (IOException e) {
e.printStackTrace();
}
}
// 获取连接
public static Connection getConnection(){
return connection;
}
// 关闭相关资源
public static void close(ResultSet resultSet, Statement statement,Connection connection){
try {
if(resultSet != null){
resultSet.close();
}
if(statement != null){
statement.close();
}
if(connection != null){
connection.close();
}
}catch (SQLException e){
e.printStackTrace();
}
}
}
jdbc.properties文件放在
src
根目录下时,不需要写相对路径
/**jdbc CRUD操作*/
public class JdbcTest05 {
private static ResultSet resultSet = null;
private static Connection connection = null;
private static PreparedStatement preparedStatement = null;
public static void main(String[] args) {
try{
// 3获取连接
connection = JdbcUtils.getConnection();
// 4定义sql
String sql="select * from dept where did=?";
// 5获取执行sql语句的对象Statement
preparedStatement = connection.prepareStatement(sql);
preparedStatement.setLong(1,1); // 第一个,did为1
// 6.执行sql,接受返回结果
ResultSet resultSet = preparedStatement.executeQuery();
// 7.处理结果
while (resultSet.next()){
System.out.println("dep_name");
}
}catch (SQLException e){
e.printStackTrace();
}finally {
JdbcUtils.close(resultSet,preparedStatement,connection);
}
}
}
2、新增,删除,查询
//新增
int i = statement.executeUpdate("insert into
t_student(s_id) values (11111)");
// 删除
int i = statement.executeUpdate("delete from t_student
where s_id=11111");
// 查询 1
ResultSet rs = statement.executeQuery("select * from
t_student");
while(rs.next()) {
System.out.println(rs.getString("s_name"));
}
// 查询 2
//条件查询,使用另外一个 api
String sql = "select * from t_student where s_name like ?";
PreparedStatement ps = conn.prepareStatement(sql);
ps.setString(1,"赵%");
ResultSet rs = ps.executeQuery();