In the HashMap, we know the values but we dont know the key,
then how can we get the key from HashMap ?????

Answers were Sorted based on User's Feedback



In the HashMap, we know the values but we dont know the key, then how can we get the key from HashM..

Answer / ganesh

import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;

public class MapEntrySetDemo {

public static void main(String[] argv) {

Map map = new HashMap();

map.put("Adobe", "Mountain View, CA");
map.put("IBM", "Mountain View, CA");
map.put("Learning Tree", "Los Angeles, CA");
map.put("Microsoft", "Redmond, WA");
map.put("Netscape", "Mountain View, CA");
map.put("O'Reilly", "Sebastopol, CA");
map.put("Sun", "Mountain View, CA");

Set entries = map.entrySet();
Iterator it = entries.iterator();
while (it.hasNext()) {
Map.Entry entry = (Map.Entry) it.next();
if("Mountain View, CA".equals(entry.getValue()))
{
System.out.println(entry.getKey() );

}
}
}
}

Is This Answer Correct ?    6 Yes 0 No

In the HashMap, we know the values but we dont know the key, then how can we get the key from HashM..

Answer / sathiyamoorthi

Hi Ganesh, Thank u for the ur very good answer...

Is This Answer Correct ?    2 Yes 0 No

In the HashMap, we know the values but we dont know the key, then how can we get the key from HashM..

Answer / ravikiran

getkeyMethodMap

Is This Answer Correct ?    0 Yes 0 No

In the HashMap, we know the values but we dont know the key, then how can we get the key from HashM..

Answer / siva thimmannagari

by using the hashcode() method

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

Can we define static methods inside interface?

0 Answers  


I need help please send me reply: Write a program "if given a string like 'HAT', the combination's returned should be like ATH,THA,TAH in java"?

4 Answers  


Where can I find data structures question and answers with comprehensive working code written in Java

0 Answers   Amazon,


What is keyword in oop?

0 Answers  


What is abstraction with strong example program? (not a general program)

3 Answers  


Hi buddy, well i got that there is always a default constructor with abstract class. OK. But why not with interface? Thanks in advance.

2 Answers  


How to remove the trailing spaces from a string?

0 Answers   Infogain,


How does queue work in java?

0 Answers  


What exactly is a .class file?

0 Answers  


give an example for encapsulation?

0 Answers   Aspire,


What must a class do to implement an interface in java programming?

0 Answers  


What 5 doubled?

0 Answers  


Categories