I have a HashMap with various keys and values, how can I get one value out?
HashMap
I have a key in the map called my_code, it should contain a str
my_code
HashMap hmap = new HashMap(); hmap.put(4, "DD");
The Value mapped to Key 4 is DD
4
DD