Hi,
I am trying to add duplicate key in HashMap.
For eg:-HashMap<String,HashMap<String,String>> empMap=new HashMap<String,HashMap<String,String>>();
I wan to add EmployeeId as key and inner hash map will will DOB and the value.I am trying to store some thing like,
{101OB:20/10/1985,102OB:18/04/1988}
But when I try this using hashmap the value of DOB is overwriting
Any suggestions?
Thanks in Adv
Ram