码迷,mamicode.com
首页 > 其他好文 > 详细

配置文件的读取

时间:2019-01-22 14:14:45      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:getc   nbsp   导入   tcl   user   drive   bsp   class   目的   

(1)配置文件放在项目的根目录下

Properties properties = new Properties();
InputStream is = new FileInputStream("config.properties");

// 导入输入流
properties.load(is);

// 读取
driverClass = properties.getProperty("driverClass");
url = properties.getProperty("url");
username = properties.getProperty("username");
password = properties.getProperty("password");

 

(2)配置文件放在src目录下

Properties properties = new Properties();
InputStream is = JDBCutils.class.getClassLoader().getResourceAsStream("config.properties");

// 导入输入流
properties.load(is);

// 读取
driverClass = properties.getProperty("driverClass");
url = properties.getProperty("url");
username = properties.getProperty("username");
password = properties.getProperty("password");

 

配置文件的读取

标签:getc   nbsp   导入   tcl   user   drive   bsp   class   目的   

原文地址:https://www.cnblogs.com/chichung/p/10303205.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!