| Author |
Inserting table in JSP
|
Kyupa Supa
Ranch Hand
Joined: Jun 23, 2012
Posts: 30
|
|
Hi!
I need to insert in a html table (in JSP file) all the students in the same year. I tried 2 methods by now:
(1) In a java file I have a method(getStudents()) that searches in an ArrayList and find all students that are in the same year. This method returns the "results "ArrayList.
I need this ArrayList in JSP file. I tried to create a new ArrayList in JSP, called "found_students", but I don't know how to insert in it the students I receive from getStudents(). This list I need to insert in a html table.
(2) In java file, method getStudent() returns a Student object. In JSP I store the student in "search", which is of type Student. I used a do{}while(); but it found only the first occurence, not all the students in the list.
I'm new to JSP and I need this for school project. Any ideas/links? I searched Google, but I really didn't know how to search for "store the ArrayList received by calling a method in JSP in an ArrayList from java file".
Thank you in advance;)
|
 |
Junilu Lacar
Bartender
Joined: Feb 26, 2001
Posts: 4118
|
|
|
Searching for "jsp jstl iterate over list" will get you some useful links.
|
Junilu - [How to Ask Questions] [How to Answer Questions] [MiH]
|
 |
 |
|
|
subject: Inserting table in JSP
|
|
|