Author
Downlaod in Strut2
pankaj semwal
Ranch Hand
Joined: Oct 07, 2008
Posts: 300
If i am using different name <s:file > .
Then how i can download the multiple files in strut2.
Below is my jsp file
David Newton
Author
Rancher
Joined: Sep 29, 2008
Posts: 12617
posted Jun 02, 2009 06:33:05
0
I think you mean upload, right? From the client (browser) to the server (your app)?
There's no issue having multiple file input elements.
pankaj semwal
Ranch Hand
Joined: Oct 07, 2008
Posts: 300
I mean
having multiple file uplaod input elements with different name.
Can it possible.
Thanks
David Newton
Author
Rancher
Joined: Sep 29, 2008
Posts: 12617
posted Jun 02, 2009 07:27:42
0
I wrote: There's no issue having multiple file input elements.
pankaj semwal
Ranch Hand
Joined: Oct 07, 2008
Posts: 300
ok.
In my First post in jsp .
Then how can i get the values of uploaded files into the Action class.
Thanks
David Newton
Author
Rancher
Joined: Sep 29, 2008
Posts: 12617
posted Jun 02, 2009 08:09:03
0
Have appropriately-named File action properties.
Reading the documentation might be quicker:
http://struts.apache.org/2.x/docs/how-do-we-upload-files.html
Ankit Garg
Saloon Keeper
Joined: Aug 03, 2008
Posts: 9189
I suppose you need to use an array of File class objects in your action class to get all the files. Maybe you also need to create arrays of different properties given in this article related to file upload (like content-type etc) for getting information about different files uploaded...
SCJP 6 | SCWCD 5 | Javaranch SCJP FAQ | SCWCD Links
subject: Downlaod in Strut2