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

java工具类-读配置文件

时间:2014-07-29 12:34:36      阅读:419      评论:0      收藏:0      [点我收藏+]

标签:java   文件   io   for   new   file   load   ad   

///读配置文件


import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Properties;
import java.util.Set;
public class PropertiesUtils
{

    private static Map<String, String> propertiesMap = new HashMap<String, String>();

    private PropertiesUtils()
    {
        init();
    }
    private static PropertiesUtils salf = null;

    private  void init()
    {
        InputStream inStream = null;
        try
        {
            String templatePath = "D:\\menu.properties";
            inStream = new FileInputStream (templatePath);
            Properties properties = new Properties();
            properties.load (inStream);
            Set<Entry<Object, Object>> proEntrySet = properties.entrySet();
            for (Entry<Object, Object> entry : proEntrySet)
            {
                propertiesMap.put (entry.getKey() + "", entry.getValue() + "");
            }
        }
        catch (Exception e)
        {
        } finally
        {
        }
    }
    public static String getValue (String key, boolean reLoadFlag)
    {
        if (null == salf)
        {
            salf = new  PropertiesUtils();
        }
        if (reLoadFlag)
        {
            salf.init();
        }
        return salf.propertiesMap.get (key);
    }

    public static String getValue (String key)
    {
        return getValue (  key, false) ;
    }
}

java工具类-读配置文件,布布扣,bubuko.com

java工具类-读配置文件

标签:java   文件   io   for   new   file   load   ad   

原文地址:http://www.cnblogs.com/heling/p/3874694.html

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