I have a LinkedHashMap
which contains another LinkedHashMap
as below:
LinkedHashMap<String,LinkedHashMap<String,String>> containerMap = new LinkedHashMap<String,LinkedHashMap<String,String>>();
I want to extract the values from the container Map individually? I mean for each key of the container map I have a LinkedHashMap
I want to use that to display in my dropdown list on my JSP
Any ideas?