springMVC上传多个文件

来源:互联网 发布:java工作内容 编辑:程序博客网 时间:2024/06/06 02:54

jsp:

<input type="file" multiple="multiple" name="file"/>

controller:

@RequestMapping(value = "upload",produces = "text/html;charset=utf-8")public Object feedbackAdd(@RequestParam("file") MultipartFile[] file){        System.out.println(file.length);        return null;}
原创粉丝点击