HashMap< String,Integer> kC = new HashMap< String, Integer >(){{put("부서코드",0); }};
for(Map.Entry< String, Integer > one : kC.entrySet()){
String key = one.getKey();
Integer value = one.getValue();
}
HashMap을 이용해서 key, value를 넣고 이용하는 예제
entrySet()으로 향상된 for문을 이용해서 key, value를 추출하는데 유용하다.
업무에서 유용하다.
'Back End > Java' 카테고리의 다른 글
poi(excel 라이브러리), iText(pdf 라이브러리) (0) | 2023.07.27 |
---|---|
URLConnection 네트워킹 API (0) | 2023.07.27 |
Jsoup API를 이용한 웹크롤링 (0) | 2023.07.27 |
기타 API들 (0) | 2023.07.26 |
스트림 API(stream) (0) | 2023.07.24 |