package java_sort;
import java.util.HashMap;
import java.util.Map;
public class HashmapGetdata {
public static void main(String[] args) {
Map<String, Object> hashMap = new HashMap();
//데이터 넣어줌
hashMap.put("num", 1);
hashMap.put("name", "rios");
hashMap.put("email", "rios0812@naver.com");
hashMap.put("phone_num", "010-1234-1234");
// ** value를 통해 key 값얻기 **
System.out.println(getKey(hashMap,"rios"));
//rios라는 value 값을 통해서 얻은 key 값 -> name
System.out.println(getKey(hashMap,"rios0812@naver.com"));
//rios0812@naver.com 라는 value 값을 통해서 얻은 key 값 -> email
// ** key를 통해 value얻기 **
String getName = (String) hashMap.get("name");
System.out.println(getName);
//name 이란 key값을 통해서 value 값은 -> rios
String getPhone = (String) hashMap.get("phone_num");
System.out.println(getPhone);
//phone_num 이란 key값을 통해서 value 값은 -> 010-1234-1234
}
// hashmap에 value 로 key 찾기
public static <K, V> K getKey(Map<K, V> map, V value) {
for (K key : map.keySet()) {
if (value.equals(map.get(key))) {
return key;
}
}
return null;
}
'memo' 카테고리의 다른 글
[chartjs] 오른쪽에도 y축 값 생성하기 : Multiple Y axis Chart.js (0) | 2021.04.09 |
---|---|
[chartjs] 그리기 순서 변경 하기, Z-index, legend 순서 변경 (0) | 2021.04.09 |
[chartjs] 차트js 그래프 크기 설정 / 조절하기 (0) | 2021.04.06 |
[리액트] is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter. 에러 (0) | 2021.03.17 |
브라우저 캐시 / 캐싱이란? (0) | 2021.03.15 |
스프링부트 : 파일첨부 multipart (0) | 2021.03.07 |
[JAVA] 이미지 파일 크롭하여 저장하기 (썸네일 생성) (0) | 2021.03.02 |