I'm trying to retrieve a HashMap<String, Object> that is a value of a HashMap<String, Object> with its key.
So, I have a HashMap<String, Object> that contains other HashMap<String, Object>.
I implemented a recursive function that returns either the HashMap<String, Object> found with the given key, or null if the key wasn't found or return the function itself to traverse the next HashMap<string, Object>.
Here is the function:
public static HashMap<String, Object> getHashMap(HashMap<String, Object> map, String key)
{
for (Map.Entry<String, Object> entry : map.entrySet()) {
if (entry.getValue().getClass().getName() == "java.util.HashMap") {
if (entry.getKey() == key)
return (HashMap<String, Object>) entry.getValue();
return getHashMap((HashMap<String, Object>) entry.getValue(), key);
}
}
return null;
}
It works pretty well but only for the first HashMap<String, Object> of the global HashMap<String, Object>. It means that the function traverse in depth in the first HashMap<String, Object> and then return null even if the key I'm looking for is in an other HashMap<String, Object>, which is further in the HashMap<String, Object> container.
Would you have an idea to help me resolving this problem and then be able to find any key that is in any HashMap<String, Object>?
Thanks for your answers
HashMap, useobject instanceof HashMap... comparing the class name like that is a very bad idea, especially since you're doing it wrong (need to useequals). Even then, you shouldn't care if something is aHashMapspecifically... it should be enough that it implementsMap. – ColinD Dec 1 '10 at 18:41