JDBCUtils工具类配置文件的读取方式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JDBCUtils工具类配置文件的读取方式相关的知识,希望对你有一定的参考价值。
//第一种方式
Properties prop= new Properties();
//读取文件 通过类加载读取
InputStream is = JDBCUtils.class.getClassLoader().getResourceAsStream("data.properties");
prop.load(is);
String driverClass = prop.getProperty("driverClass");
String url = prop.getProperty("url");
String username = prop.getProperty("username");
String password = prop.getProperty("password");
//第二种方式
Properties properties = new Properties();
// 读取属性文件:使用Java中Properties的对象.
InputStream is = new FileInputStream("src/jdbc.properties");
properties = new Properties();
properties.load(is);
String driverClass = properties.getProperty("driverClass");
String url = properties.getProperty("url");
String username = properties.getProperty("username");
String password = properties.getProperty("password");
以上是关于JDBCUtils工具类配置文件的读取方式的主要内容,如果未能解决你的问题,请参考以下文章
网上图书商城项目学习笔记-035工具类之JdbcUtils及TxQueryRunner及C3P0配置