Map에 저장된 내용을 모두 출력하는 방식입니다.
3가지 타입이며 아래 예제를 확인하시길 바랍니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | import java.util.HashMap; import java.util.Iterator; import java.util.Map; public class MapIterationSample { public static void main(String[] args) { HashMap<String, String> hashMap = new HashMap<String, String>(); hashMap.put("test3", "name5"); hashMap.put("test4", "name2"); hashMap.put("test5", "name1"); hashMap.put("test1", "name3"); hashMap.put("test2", "name4"); System.out.println("=================Type1================="); Iterator<String> mapIter = hashMap.keySet().iterator(); while(mapIter.hasNext()){ String key = mapIter.next(); String value = hashMap.get( key ); System.out.println(key+" : "+value); } System.out.println("=================Type2================="); for(Map.Entry<String, String> elem : hashMap.entrySet()){ String key = elem.getKey(); String value = elem.getValue(); System.out.println(key+" : "+value); } System.out.println("=================Type2================="); for(String key : hashMap.keySet()){ String value = hashMap.get(key); System.out.println(key+" : "+value); } } } |
참고: http://huskdoll.tistory.com/5, http://stove99.tistory.com/96
java 파일, 디렉토리 삭제 (java file directory delete) (0) | 2016.09.20 |
---|---|
[JAVA] 자바 형변환 (0) | 2016.09.01 |
java calendar 특정일 부터 현재일 까지 출력 (Calendar 날짜 셋팅) (1) | 2016.08.24 |
java url 호출 Get방식 (java url call example) (3) | 2016.08.01 |
jdbc 예제 java 프로그래밍 (jdbc connection, mysql, oracle, jdbc JAVA 예제, jdbc Example) (0) | 2016.06.23 |
댓글 영역