Can I store more than One value in HashMap using Same kay?

Hi,I want to store more than one value in HashMap using same key................. is it possible?If yes, then please give me source code for that.....Thankx in Adv.......
[198 byte] By [Bipin_sutariyaa] at [2007-11-26 17:28:30]
# 1
Write the source yourself.Use a List as value, and put all values in the list. Kaj
kajbja at 2007-7-8 23:56:26 > top of Java-index,Java Essentials,Java Programming...
# 2
You could store an array or a List in the HashMap.
-Kayaman-a at 2007-7-8 23:56:26 > top of Java-index,Java Essentials,Java Programming...
# 3
>I want to store more than one value in HashMap using >same key................. is it possible?I don't think soMessage was edited by: manuel.leiria
manuel.leiriaa at 2007-7-8 23:56:26 > top of Java-index,Java Essentials,Java Programming...
# 4
@Op. You can also take a look at MultiValueMap from apache.Kaj
kajbja at 2007-7-8 23:56:26 > top of Java-index,Java Essentials,Java Programming...
# 5
or use aMap<String,List<String>>
suparenoa at 2007-7-8 23:56:26 > top of Java-index,Java Essentials,Java Programming...