Reputation: 6774
i have a hashmap where every key has many values(stored in a arraylist). How to display the arraylist i.e the values for a particular key in a hashmap in java??
Upvotes: 1
Views: 680
Reputation: 199234
import java.util.*;
public class PrintListFromHashMap {
public static void main( String [] args ) {
Map<String,List<String>> hashMap = new HashMap<String,List<String>>();
hashMap.put( "list", new ArrayList<String>(Arrays.asList("A","B","C")));
System.out.println( hashMap.get("list") );
}
}
$ javac PrintListFromHashMap.java
$ java PrintListFromHashMap
[A, B, C]
Upvotes: 6
Reputation: 1108782
So, you want to be able to associate multiple values with one key? If so, then just use either a Map<K, Collection<V>>
, or Google Collections MultiMap<K, V>
Upvotes: 1