How to upload multiple images in java(struts) using jsp?

I have jsp code college.jsp page

<HTML>
<head>
</head>
<body>
<html:form action ="/college.do">
<fieldset>
<legend>COLLEGE INFORMATION :</legend>
<pre>
Gallery Images: <input type="file" name="file[]" multiple/>
<html:submit value = "S U B M I T"/>

</fieldset>
</html:form>
</body>
</HTML>

How to upload the multiple images in struts Total images storing folder in project using this jsp,but i want to CollegeAction class and CollegeForm class how to do that, please help me code

View Answers









Related Tutorials/Questions & Answers:
Advertisements