Hi,
I modified your example a little to make things a little clearer.
Here are the entries from the
jsp:
The iterator returns the EntrySet for each entry in the map.
To display the Student values you can just use the getKey() and getValue() methods.
To look up the student key to get the address, append the getKey() from the entrySet with
a literal 'S'.
Here are the results:
Student Key: 1 - Student Value: AAAA
Address Value: STREET1
Student Key: 2 - Student Value: BBBB
Address Value: STREET2
I hope this helps.
Pete Searls