Originally posted by Seamus Loftus:
The problem is that the JSTL line returns a object and not the vector I need.
The EL is interpretive. It will "return" whatever the object really is.
Secondly, in the following lines;
<c:set var="hashsubitem" value="${hashitem.key}"/>
<c:forEach var='vectval' items='${hashsubitem}'>
you are setting
hashsubitem from the
key of the Map.Entry instance and then attempting to iterate over that. Is the vector really the key of your Map? Or did you mean to iterate over the value?
If so, the line should be:
Finally, when posting code, please be sure to check the 'disable smilies' checkbox so that your <c:out> tags look less

surprised!