| Author |
In Struts,<logic:iterate> to iterate over values of hashmap which are arraylist of arraylists
|
pragya ranjan
Greenhorn
Joined: May 13, 2009
Posts: 1
|
|
How to iterate over values of hashmap which are arraylist of arraylists using <logic:iterate> ?
We are getting the error as "cannot create iterator for this collection"
|
 |
Ankit Garg
Saloon Keeper
Joined: Aug 03, 2008
Posts: 9191
|
|
Hi Pragya, welcome to javaranch!
Can you please post the source code which you are using. I think you should not face any problems. When you iterate over a HashMap, the Map.Entry is placed on the value stack. Then you can iterate over the values which will again be an ArrayList, so the array list will be placed on the value stack. Then again you can iterate over that array list using another iterator tag and so on...
|
SCJP 6 | SCWCD 5 | Javaranch SCJP FAQ | SCWCD Links
|
 |
 |
|
|
subject: In Struts,<logic:iterate> to iterate over values of hashmap which are arraylist of arraylists
|
|
|