I have stored the below values in a hashmap which is like this -
a1 - name
b1 - age
c1 - city
a2 - name1
b2 - age1
c2 - city1
...
I am fetching these values from the db. I am not able to figure out how to iterate through this key-value pair and display on a table in a jsp page in a particular order. I need to display it like this in the table
name age city name1 age1 city1 name2 age2 city2 . . .
Please let me know how to do this.
Regards Siddharth