How do I upload multiple files in Struts 1's ActionForm
?
I have to show multiple options of file uploading and save them at time.
I don't want to show input box for file in Struts 1?
Asked
Active
Viewed 3,719 times
7

Buhake Sindi
- 87,898
- 29
- 167
- 228

user1172963
- 71
- 1
- 3
2 Answers
3
In Struts if you want multiple of anything, you need to create an array of the type you want.
In file upload, you need to have an array of FormFile
and multiple input text boxes with the name to the same Struts ActionForm FormFile attribute.

Buhake Sindi
- 87,898
- 29
- 167
- 228
1
You can either use JQuery File Upload which can be easily embed with JSP and can be used with FormFile object of struts.
Or You can define an array of FormFile objects in the ActionForm class.
But for that you have to show multiple input boxes for files.

Naved
- 4,020
- 4
- 31
- 45
-
i have created multiple array of FormFile but it give me error on jsp while submiting form – user1172963 Jan 27 '12 at 07:35