码迷,mamicode.com
首页 > 编程语言 > 详细

java读取配置文件

时间:2020-04-30 15:51:27      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:prope   vat   puts   redis   配置文件   NPU   ring   ESS   col   

推荐:使用Spring自带工具类ClassUtils读取配置文件

/**
 * 初始化配置redis文件
 * @param configFileName
 */
private void initProperties(String configFileName) {
    try {
        InputStream resourceAsStream = ClassUtils.getDefaultClassLoader().getResourceAsStream(configFileName);
        properties.load(resourceAsStream);
    } catch (IOException e) {
        log.error(e.getMessage());
    }
}

 

java读取配置文件

标签:prope   vat   puts   redis   配置文件   NPU   ring   ESS   col   

原文地址:https://www.cnblogs.com/gjq1126-web/p/12808691.html

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