| Author |
loading form fields into collection
|
Poorav Chaudhari
Ranch Hand
Joined: Sep 17, 2002
Posts: 50
|
|
In my jsp form, i have lots of similar fields. After submit when i want to read the fields from the actionform, i have to go through each field. Since all the fields are processed similarly i would rather write a loop and process the field values. Right now what i have to do is sField = form.getsField1(); //start processing //.... //end processing sField = form.getsField2(); //start processing //.... //end processing sField = form.getsField1(); //start processing //.... //end processing ... and so on. this gets me suggestions please. thank you.
|
Poorav Chaudhari
|
 |
Ravi Veera
Ranch Hand
Joined: Jun 23, 2001
Posts: 127
|
|
For a start you could create a function private void processStuff(String sField){ //start processing //.... //end processing } That would reduce some clutter. You could also use reflection and write a loop to go through the form methods and then call a function for methods starting with gets. HTH Ravi
|
 |
 |
|
|
subject: loading form fields into collection
|
|
|