首页 > 编程语言 > 详细

Java获取.properties文件

时间:2014-07-05 23:47:25      阅读:489      评论:0      收藏:0      [点我收藏+]
	@SuppressWarnings("rawtypes")
	public static void getProperties() {
		
		Properties properties = null;
		InputStream in = null;
		try {
			properties = new Properties();
	
			//获取文件
			in = Object.class.getResourceAsStream("/config.properties");
			properties.load(in);
			
			Enumeration enumerations= properties.propertyNames();
			
			//遍历输出
			while(enumerations.hasMoreElements()){
				String key=(String)enumerations.nextElement();
				String value=properties.getProperty(key);
				
				System.out.println(key+"="+value);		
			}
			
		} catch (IOException e) {
			e.printStackTrace();

		//关闭InputStream
		} finally{
			if(in != null){
				try {
					in.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
		}
	}

Java获取.properties文件,布布扣,bubuko.com

Java获取.properties文件

原文:http://blog.csdn.net/wintersweetsugar/article/details/36871459

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!