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

Java 中${key}获取应用配置信息

时间:2015-03-13 20:55:28      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

${key} 中key的值来至于系统配置信息

                Properties properties = System.getProperties();
		
		@SuppressWarnings("unchecked")
		Enumeration<String> keys = (Enumeration<String>) properties.propertyNames();
		
		while(keys.hasMoreElements()){
			
			String key = keys.nextElement();
			String value = properties.getProperty(key);
			
			System.out.println();
			System.out.println(key + " = " + value);
			System.out.println();
		}

上面代码可以遍历出所有系统配置信息。

自己写着玩

Java 中${key}获取应用配置信息

标签:

原文地址:http://my.oschina.net/ruoxi/blog/386817

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