• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

java Springboot实现多文件上传功能

springboot 搞代码 4年前 (2022-01-05) 17次浏览 已收录 0个评论

这篇文章主要为大家详细介绍了java Springboot实现多文件上传功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

前端采用layui框架,讲解多文件上传的完整实现功能。

前端html重点代码如下:

 <div class="layui-form-item"> <label class="layui-form-label">上传文件</label><div class="layui-input-block"> <div class="layui-upload"> <button type="button" class="layui-btn layui-btn-normal" id="testList">选择多文件</button><div class="layui-upload-list"> <table class="layui-table"> <thead> <tr><th>文件名</th><th>大小</th><th>状态</th><th>操作</th></tr></thead><tbody id="demoList"></tbody></table></div><button type="button" class="layui-btn" id="testListAction">开始上传</button></div></div></div>

相应的,js代码如下所示:

 layui.use('upload', function(){ var $ = layui.jquery,upload = layui.upload; //多文件列表示例 var demoListView = $('#demoList') ,uploadListIns = upload.render({ elem: '#testList' ,url: '/upload' ,accept: 'file' ,data:{} //可放扩展数据 key-value ,multiple: true ,auto: false ,bindAction<em style="color:transparent">来源gao.dai.ma.com搞@代*码网</em>: '#testListAction' ,choose: function(obj){ var files = this.files = obj.pushFile(); //将每次选择的文件追加到文件队列 //读取本地文件 obj.preview(function(index, file, result){ var tr = $(['<tr id="upload-'+ index +'">' ,'<td>'+ file.name +'</td>' ,'<td>'+ (file.size/1014).toFixed(1) +'kb</td>' ,'<td>等待上传</td>' ,'<td>' ,'<button class="layui-btn layui-btn-mini demo-reload layui-hide">重传</button>' ,'<button class="layui-btn layui-btn-mini layui-btn-danger demo-delete">删除</button>' ,'</td>' ,'</tr>'].join('')); //单个重传 tr.find('.demo-reload').on('click', function(){ obj.upload(index, file); }); //删除 tr.find('.demo-delete').on('click', function(){ delete files[index]; //删除对应的文件 tr.remove(); uploadListIns.config.elem.next()[0].value = ''; //清空 input file 值,以免删除后出现同名文件不可选 }); demoListView.append(tr); }); } ,done: function(res, index, upload){ if(res.code == 0) //上传成功 var tr = demoListView.find('tr#upload-'+ index) ,tds = tr.children(); tds.eq(2).html('<span style="color: #5FB878">上传成功</span>'); tds.eq(3).html(''); //清空操作 return delete this.files[index]; //删除文件队列已经上传成功的文件 } //code为后台传回来的数据,具体多少自己定, //后台只能传回json格式数据,不然会走error函数; ,error: function(index, upload){ } }) }); 

以上即是前端功能的实现,后端方面,在Service层Impl下创建文件上传的函数:

 public String uploadNoticeFile(MultipartFile fileList) { try{ String pathname = filepath; String timeMillis = Long.toString(System.currentTimeMillis());//时间戳 String filename = timeMillis + fileList.getOriginalFilename(); File dir = new File(pathname); if (!dir.exists()) { dir.mkdirs(); } String filepath = pathname + filename; File serverFile = new File(filepath); fileList.transferTo(serverFile); //存入数据库 NoticeFile noticeFile = new NoticeFile(); noticeFile.setNoFileName(filename); noticeFile.setNoFilePath(filepath); noticeFile.setNoId(0L); noticeFileRepository.save(noticeFile); return "1"; }catch (Exception e) { e.printStackTrace(); return "0"; } } 

NoticeFile是我个人在写项目时创建的类,读者可根据实际情况自行运用。

然后,在controller层中创建相应的函数:

 @RequestMapping(value = "/upload", method = RequestMethod.POST) @ResponseBody public Map noticeFile(@RequestParam(name = "file") MultipartFile files) { String msg = noticeFileService.uploadNoticeFile(files); Map map = new HashMap(); if (msg == "1") { map.put("code", "0"); } else { map.put("code", "1"); } return map; } 

以上,即实现了多文件上传的全部功能。

以上就是java Springboot实现多文件上传功能的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:java Springboot实现多文件上传功能

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址