2013년 8월 17일 토요일

오라클자바 Community 강좌, 자바에서 JCF 객체 출력하기 entrySet

오라클자바 Community 강좌, 자바에서 JCF 객체 출력하기


오라클자바커뮤니티에서 설립한  개발자중심! 오엔제이프로그래밍 실무교육센터
(신입사원채용무료교육, 오라클, SQL, 튜닝, 자바, 스프링, Ajax, jQuery, 안드로이드, 아이폰, 닷넷, C#, ASP.Net)   www.onjprogramming.co.kr 



private Map<String, Object> map ;
 private Properties props;
 private Set<Object> set;
        ......
 
 for(Map.Entry<String, Object> entry:map.entrySet()) {
   System.out.println("Key: " + entry.getKey() + "-" + entry.getValue());
 }
 for(Map.Entry<Object, Object> entry : props.entrySet()) {
   System.out.println("key : " + entry.getKey() + "-" + entry.getValue() );
 }

 for(Object obj : set) {
    System.out.println("value : " + obj);
 }

댓글 없음:

댓글 쓰기