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

读取properties文件的信息

时间:2017-10-10 16:24:21      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:pre   private   conf   style   use   res   sim   final   stat   

1、properties配置文件的信息

fcsimage_path=C://FCSImage

2、Java代码

public final class Config {
    private static final Object lock = new Object();
    private static volatile Properties config;
    
    private Config(){}
        
    private static Properties getInstance(){
        if (config == null)
        {
            //double lock check
            synchronized (lock) { // declare a private static Object to use for mutex
                if( config == null ){     // have to do this inside the sync
                    config = new Properties();    
                }
            }
            try {
                config.load(Config.class.getClassLoader().getResourceAsStream("common.properties"));
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        
        return config;
    }
    
    public static String fcsimage_path() {
        return getInstance().getProperty("fcsimage_path");
    }
    
    
}

 

技术分享

读取properties文件的信息

标签:pre   private   conf   style   use   res   sim   final   stat   

原文地址:http://www.cnblogs.com/zhangjinru123/p/7645409.html

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