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

Java获取.properties配置文件某一项value根据key值

时间:2015-09-23 16:46:55      阅读:363      评论:0      收藏:0      [点我收藏+]

标签:

    public static String getProperty(String key){
        InputStream in = PropertiesUtils.class.getResourceAsStream("/conf.properties");
        Properties properties = new Properties();
        String value;
        try {
            properties.load(in);
            value = properties.getProperty(key);
            in.close();
            return value;
        } catch (IOException e) {
            e.printStackTrace();
        }
        return null;
    }

 

Java获取.properties配置文件某一项value根据key值

标签:

原文地址:http://www.cnblogs.com/dreamzhiya/p/4832561.html

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