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

Java语言读取配置文件config.properties

时间:2015-04-03 15:26:32      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:properties   java   配置文件   

一、配置文件config.properties是放在src根目录下的:例如我的是
/PropertiesTest/src/com/xuliugen/project/type.properties

配置文件中的内容如下:

left=com.sunny.project.LeftHair
right=com.sunny.project.RightHair
in=com.sunny.project.InHair

读取配置文件中的代码如下:

public class PropertiesReader {

    public static void main(String[] args) {
        new PropertiesReader().getProperties();
    }
    public Map<String, String> getProperties() {

        Properties props = new Properties();
        Map<String, String> map = new HashMap<String, String>();
        try {

            InputStream in = getClass().getResourceAsStream("type.properties");
            props.load(in);
            Enumeration en = props.propertyNames();
            while (en.hasMoreElements()) {
                String key = (String) en.nextElement();
                String property = props.getProperty(key);
                map.put(key, property);
                System.out.println(key + "  " + property);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return map;
    }
}

运行结果如下:
技术分享

Java语言读取配置文件config.properties

标签:properties   java   配置文件   

原文地址:http://blog.csdn.net/xlgen157387/article/details/44854387

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