헤르메스 LIFE

[Core Java] Map or List에 값이 포함되어 있는지 확인 본문

Core Java

[Core Java] Map or List에 값이 포함되어 있는지 확인

헤르메스의날개 2012. 7. 3. 10:48
728x90

public static void main(String[] args) {
 
    Map<string> map = new HashMap<string>();
    map.put("A", "aaa");
    map.put("B", "bbb");
    map.put("C", "ccc");
    map.put("D", "ddd");
    map.put("E", "eee");
    map.put("F", "fff");
     
    String key = "D";
    String value = "eee";
    if(map.containsKey(key)){
        System.out.println("find key ["+key+"]");
    }else{
        System.out.println("not find key ["+key+"]");
    }
    if(map.containsValue(value)){
        System.out.println("find value ["+value+"]");
    }else{
        System.out.println("not find value ["+value+"]");
    }
}


출력 결과는 아래와 같습니다.

find key [D]
find value [eee]

728x90

'Core Java' 카테고리의 다른 글

[Applet] Java Applet Tutorial  (0) 2013.07.24
Web 개발환경 설정  (0) 2013.06.24
[OpenSource] 토비 Spring 3 - ConfigurableDispatcherServlet  (0) 2012.06.22
[Source] Common Java Cookbook  (0) 2012.06.20
[Source] EncodingFilter.java  (0) 2012.05.15