将元素添加到HashMap中的ArrayList中

时间:2019-02-13 12:49:30

标签: java hashmap

如何在HashMap中将元素添加到ArrayList?

这是一个问题,我问了很多遍,解决了之后就忘记了。我想很多人都拥有相同的答案,所以这是简单的答案。

// Example
HashMap<String, ArrayList<String>> someElements = new HashMap<String, ArrayList<String>>();

1 个答案:

答案 0 :(得分:0)

// fill the HashMap with the key that you need
// initiate it with an empty ArrayList        
   someElements.put("keyString" , new ArrayList<String>());

// Later when wanting to add an element to the ArrayList of a key use
   someElements.get("keyString").add("TheStringValue");