jdbc连接数据库之修改

 时间:2026-02-11 23:37:35

1、mysql加载数据库

driver=com.mysql.jdbc.Driver

数据库的链接url=jdbc:mysql://localhost:3306/demo1

用户名username=root

密码password=123456

设置配置文件信息

jdbc连接数据库之修改

2、属性的定义

public class DBUtil { private static Properties properties = new Properties(); private static String driver; private static String url; private static String username; private static String password; static{

jdbc连接数据库之修改

3、  // 获取配置文件中的相关参数值  try {

读取配置文件   properties.load(DBUtil.class.getClassLoader().getResourceAsStream("db.properties"));   driver = properties.getProperty("driver");            url=properties.getProperty("url");            username=properties.getProperty("username");            password=properties.getProperty("password");    

jdbc连接数据库之修改

4、        try {    Class.forName(driver);   } catch (ClassNotFoundException e) {    // TODO Auto-generated catch block    e.printStackTrace();   }  } catch (IOException e) {   System.out.println("加载文件失败");  } }

jdbc连接数据库之修改

5、  //连接数据库的方法 public static Connection getConnection() throws SQLException{    Connection con=null;  con=DriverManager.getConnection(url,username,password);    return con; }  //关闭数据库的方法 public static void closeConnection(Connection con){  try {   con.close();  } catch (SQLException e) {   System.out.println("关闭资源失败");  } }}

jdbc连接数据库之修改

6、public class Test { public static void main(String[] args) {  Connection con =null;  try {   con=DBUtil.getConnection();  } catch (SQLException e) {   // TODO Auto-generated catch block   e.printStackTrace();  }finally{     DBUtil.closeConnection(con);  }  System.out.println(con); } }

jdbc连接数据库之修改

  • Eclipse怎么使用
  • 如何编写数据字典
  • Eclipse控制台乱码怎么解决?
  • 通过SmartArt在EXCEL中制作关系图
  • 如何使用MyEclipse导入项目?
  • 热门搜索
    贵州旅游自由行攻略 旅游地产 黄河口生态旅游区 葫芦岛旅游 尼泊尔旅游 河北旅游职业学院 韶山旅游 杭州市旅游职业学校 贵州旅游最佳路线 惠州巽寮湾旅游攻略