aspose file tools
The moose likes Java in General and the fly likes comparing keys of two hashmaps Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "comparing keys of two hashmaps" Watch "comparing keys of two hashmaps" New topic
Author

comparing keys of two hashmaps

Mohit Sinha
Ranch Hand

Joined: Nov 29, 2004
Posts: 125
Hi All,

I want to identify the identical keys amongst two haspmaps (H1 and H2).
Also I need to identify elements of H1 not available in H2 and vice versa.

Currently I am using the HashMap interface containsKey method but have to do something like this

- loop throught all keys of H1 and H2.containsKey(h1_key)
- loop throught all keys of H2 and H1.containsKey(h2_key)

Ist there a better view to implement the same.


Thanks


Pat Farrell
Rancher

Joined: Aug 11, 2007
Posts: 4422
    
    2

If you use the Google Collections package, it has functions to do the usual intersection, union, and difference functions for sets.
Vivek K Singh
Ranch Hand

Joined: Dec 22, 2009
Posts: 85

You do not need to loop thru both the maps, you can do something like:



This will get all keys from the hashmap1 and compare to the hashmap2 and print duplicates...


SCJP 6
Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19216

Or use keySet() in combination with the bulk operators:


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: comparing keys of two hashmaps
 
Similar Threads
how object.clone() is different then direct reference assignment
Read a property file in JSTL
addition of two Hash maps
String is not working as i supposed it to work
Please explain the output