首页 > 其他 > 详细

添加Properties取值和枚举取值

时间:2016-11-15 23:06:46      阅读:199      评论:0      收藏:0      [点我收藏+]
<!--配置文件-->
<property name="ppp"> <props> <prop key="11">hello</prop> <prop key="22">bye</prop> </props> </property> </bean>

  取值App1类代码:

  System.out.println("****通过properties取出数据*****");
        Properties pp=department.getPpp();
      //  System.out.println(pp.get("11").toString());
	 for(Entry<Object, Object> entry:pp.entrySet()){
		 System.out.println(entry.getKey().toString()+""+entry.getValue());
	 }
	  System.out.println("***通过枚举取出来***");
	  Enumeration en=pp.keys();
	  while(en.hasMoreElements()){
	  //Entry<Object,Object> element=(Entry<Object,Object>)en.nextElement();
	  //System.out.println(element.getKey()+""+element.getValue());
	  String key=(String) en.nextElement();
	  System.out.println(key+""+pp.getProperty(key));
	  }

  

添加Properties取值和枚举取值

原文:http://www.cnblogs.com/yang-ye/p/6067489.html

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