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

读取Maven项目下resources目录下的配置文件(properties为例)

时间:2017-11-12 01:04:32      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:int   tor   turn   mes   property   加载   iter   catch   resource   

配置文件:xxxxx.properties

1 a.url=********************
2 b.url=----------------------------------

读取配置文件:

public class ReadJdProperties {
        
    public String getUrlValue(String urlName) {
        String url = null;
        Properties prop = new Properties();
        try {
            ClassLoader classLoader = ReadJdProperties.class.getClassLoader();  
            URL resource = classLoader.getResource("xxxxx.properties");  
            String path = resource.getPath();  
            System.out.println(path);  
            // 读取属性文件xxxxx.properties
            InputStream in = classLoader.getResourceAsStream("xxxxx.properties");  
            prop.load(in); /// 加载属性列表
            Iterator<String> it = prop.stringPropertyNames().iterator();
            while (it.hasNext()) {
                if (it.next().equals(urlName)) {
                    url = prop.getProperty(urlName);
                }
            }
            in.close();
        } catch (Exception e) {
            
        }
        return url;
    }
    public static void main(String[] args) {
        new ReadJdProperties().getUrlValue("a.url"); // 获取a.url的值
    }
}   

 

读取Maven项目下resources目录下的配置文件(properties为例)

标签:int   tor   turn   mes   property   加载   iter   catch   resource   

原文地址:http://www.cnblogs.com/wdpnodecodes/p/7820473.html

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