Hi Guys Good Morning
I have a requirement to upload files.
upload.jsp:
-------------
<s:file name="image" accept="image/*" theme="simple" id="imageFile" value="%{imageUrl}"/>
<s:file name="icon" accept="image/*" theme="simple" id="iconFile" value="%{iconUrl}"/>
UploadAction.java:
---------------------
File image;
File icon;
and setters and getters. So based on the name I can able upload the files into different directories like icons will be icons folder , images will be into images folder.
Now the requirement is I need to upload a set of images & set of icons not sure the count.
Please help me out how to do this........
Thanks