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

读取properties文件

时间:2018-03-27 18:39:05      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:pre   ade   color   mysql   配置   sql   pos   resource   load   

读取properties文件

InputStream in = getClass().getClassLoader().getResourceAsStream("jdbc.properties");
        Properties properties = new Properties();
        properties.load(in);
        driverClass = properties.getProperty("driver");
        jdbcURL = properties.getProperty("url");
        user = properties.getProperty("user");
        password = properties.getProperty("password");

 

peoperties配置文件的格式

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://127.0.0.1:3306/test
user=root
password=123

  

读取properties文件

标签:pre   ade   color   mysql   配置   sql   pos   resource   load   

原文地址:https://www.cnblogs.com/xuyaoyao/p/8658704.html

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