/* 从属性资源文件中读取连接数据库信息 实际开发中不建议把连接数据库的信息写死到java程序中 配置文件jdbc.properties driver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost:3306/bjpowernode user=root password=123456 */ import java.sql.*; import java.url.*; public class JDBCTest04{ public static void main(String [] args){ //使用资源绑定器绑定属性配置文件 ResourceBundle bundle=ResourceBundle.getBundle("jdbc"); String driver=bundle.getString("driver"); String url=bundle.getString("url"); String user=bundle.getString("user"); String password=bundle.getString("password"); Connection conn=null; Statement stmt=null; try{ //1.注册驱动 Class.forName(driver); //2.获取链接 conn=DriverManager.getConnection(url,user,password); //3.获取数据库操作对象 stmt=conn.createStatement(); //4.执行sql语句 String sql="update dept set dname='销售部',loc='天津' where deptno=20"; int count=stmt.executeUpdate(sql); System.out.println(count==1?"更新成功":"更新失败"); }catch(Exception e){ e.printStackTrace(); }finally{ //6.释放资源 if(smt!=null){ try{ smt.close(); }catch(SQLException e){ e.printStackTrace(); } } if(conn!=null){ try{ conn.close(); }catch(SQLException e){ e.printStackTrace(); } } } } }