Java - Adding another String value to existing HashMap Key without overwriting?

What are you hoping to achieve here?

A Map (the HashMap) in your case is a direct "mapping" from one "key" to another value.

E.g.

"foo" -> 123
"bar" -> 321
"far" -> 12345
"boo" -> 54321

This means that if you were to try:

myHashMap.get("foo");

It would return the value 123 (of course, the type of the value you return can be anything you want).

Of course, this also means that any changes you make to the value of the key, it overrides the original value you assigned it, just like changing the value of a variable will override the original one assigned.

Say:

myHashMap.put("foo", 42);

The old value of "foo" in the map would be replaced with 42. So it would become:

"foo" -> 42
"bar" -> 321
"far" -> 12345
"boo" -> 54321

However, if you need multiple String objects that are mapped from a single key, you could use a different object which can store multiple objects, such as an Array or a List (or even another HashMap if you wanted.

For example, if you were to be using ArrayLists, when you are assigning a value to the HashMap, (say it is called myHashMap), you would first check if the key has been used before, if it hasn't, then you create a new ArrayList with the value you want to add, if it has, then you just add the value to the list.

(Assume key and value have the values you want)

ArrayList<String> list;
if(myHashMap.containsKey(key)){
    // if the key has already been used,
    // we'll just grab the array list and add the value to it
    list = myHashMap.get(key);
    list.add(value);
} else {
    // if the key hasn't been used yet,
    // we'll create a new ArrayList<String> object, add the value
    // and put it in the array list with the new key
    list = new ArrayList<String>();
    list.add(value);
    myHashMap.put(key, list);
}

Would you like a concatenation of the two strings?

map.put(key, val);
if (map.containsKey(key)) {
    map.put(key, map.get(key) + newVal);
}

Or would you like a list of all the values for that key?

HashMap<String,List<String>> map = new HashMap<String,List<String>>();
String key = "key";
String val = "val";
String newVal = "newVal";
List<String> list = new ArrayList<String>();
list.add(val);
map.put(key, list);
if (map.containsKey(key)) {
    map.get(key).add(newVal);
}

You can do like this!

Map<String,List<String>> map = new HashMap<>();
.
.
if(map.containsKey(key)){
    map.get(key).add(value);
} else {
   List<String> list = new ArrayList<>();
   list.add(value);
   map.put(key, list);
}

Or you can do the same thing by one line code in Java 8 style .

map.computeIfAbsent(key, k ->new ArrayList<>()).add(value);

Tags:

Java

Hashmap