I'm new to Struts2. I have written a JSP page to accept multiple file in single upload option but it doesn't accept multiple file in index page it self.
Please find below the index.jsp file.
<s:form action="upload" method="post" enctype="multipart/form-data">
<label for="myFile">Upload your file</label>
<s:file name="myFile" multiple="multiple" />
<s:submit value="Upload files" />
</s:form>
Please help me out from this problem. it allows single file to select.