Link to home
Start Free TrialLog in
Avatar of EmailSurfer
EmailSurfer

asked on

Looping through javabean array in jsp?

Hello,

In my servlet, I created an ArrayList of objects and pass these to a jsp page using:

req.setAttribute("bean", uploadList);

The ArrayList contains objects of the FileBean class, with a getIndex, and getDate methods.

Could any possibly demonstrate how to loop through the ArrayList in the jsp and display the FileBean object values in a html table?

To display the values of a javabean in jsp pages I normally have to use for example. requestScope.bean.getMethod();

Thanks

Thanks
ASKER CERTIFIED SOLUTION
Avatar of fargo
fargo

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial