我上一篇讲的是如何单文件上传,这一篇呢就讲多文件上传
第一步:首先得有一个文件夹,具体请看我上一篇博客,这篇就不说了。
第二部:上传图片的jsp页面中的代码:
<form action="${pageContext.request.contextPath}/addImg" method="post" enctype="multipart/form-data">
<table >
<tr>
<td>上传图片:</td>
<td><input type="file" name="file" /></td>
<td><input type="file" name="file" /></td>
<td><input type="file" name="file" /></td><!--这个name=“file”并不是数据库的属性名哦-->
</tr>
</table>
<button type="submit" >