加载Properties配置文件

Posted 德邦总管

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了加载Properties配置文件相关的知识,希望对你有一定的参考价值。

/** 
     * 加载Properties配置文件
     * 
     * @author ZhangHaiNing
     * @param file 要读取的文件 
     * @return
     */
    public static Properties getProp(String file){
            Properties prop=new Properties();
        try {
            String url = TelChargeDwr.class.getResource("").getPath().replaceAll("%20", " ");    
            String path = url.substring(0, url.indexOf("WEB-INF")) + "WEB-INF/";      
            prop.load(new FileInputStream(path+file)); 
        } catch (IOException e) {
            e.printStackTrace();
        }
        return prop;
    }

 

以上是关于加载Properties配置文件的主要内容,如果未能解决你的问题,请参考以下文章

spring加载配置文件

Spring详解加载配置文件

spring 加载属性(properties)文件

springboot加载properties和yml配置文件的顺序

java中用Properties类加载配置文件

Spring MVC多个properties 根据VM options参数加载不同的properties 文件