使用properties配置文件连接数据库

本文提供了一个简单的Java程序示例,展示了如何使用Java的MySQL JDBC驱动程序连接到本地MySQL数据库,并通过配置文件加载数据库连接参数。程序演示了如何获取驱动类、建立数据库连接、设置属性和执行SQL查询。
driver=com.mysql.jdbc.Driver url=jdbc\:mysql\://localhost/test?useUnicode\=true&characterEncoding\=gb2312 user=root password=root
import java.io.IOException; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.util.Properties; public class ConnectionUtils { private static String[] getProperty() throws IOException { String[] properties = new String[4]; Properties props = new Properties(); props.load(ConnectionUtils.class.getClassLoader().getResourceAsStream( "db.properties")); String driver = props.getProperty("driver"); String url = props.getProperty("url"); String user = props.getProperty("user"); String password = props.getProperty("password"); properties[0] = driver; properties[1] = url; properties[2] = user; properties[3] = password; return properties; } public static Connection getConnection() throws SQLException, IOException, ClassNotFoundException { String[] properties = getProperty(); Class.forName(properties[0]); return DriverManager.getConnection(properties[1], properties[2], properties[3]); } }
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值