溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

java Springboot實(shí)現(xiàn)多文件上傳功能

發(fā)布時(shí)間:2020-10-22 15:10:03 來源:腳本之家 閱讀:243 作者:西郊巷外 欄目:編程語言

前端采用layui框架,講解多文件上傳的完整實(shí)現(xiàn)功能。

前端html重點(diǎn)代碼如下:

<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>狀態(tài)</th>
 <th>操作</th>
 </tr></thead>
 <tbody id="demoList"></tbody>
 </table>
 </div>
 <button type="button" class="layui-btn" id="testListAction">開始上傳</button>
 </div>
  </div>
</div>

相應(yīng)的,js代碼如下所示:

layui.use('upload', function(){
  var $ = layui.jquery,upload = layui.upload;
  //多文件列表示例
  var demoListView = $('#demoList')
    ,uploadListIns = upload.render({
    elem: '#testList'
    ,url: '/upload'
    ,accept: 'file'
    ,data:{} //可放擴(kuò)展數(shù)據(jù) key-value
    ,multiple: true
    ,auto: false
    ,bindAction: '#testListAction'
    ,choose: function(obj){
     var files = this.files = obj.pushFile(); //將每次選擇的文件追加到文件隊(duì)列
     //讀取本地文件
     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(''));
 
      //單個(gè)重傳
      tr.find('.demo-reload').on('click', function(){
       obj.upload(index, file);
      });
 
      //刪除
      tr.find('.demo-delete').on('click', function(){
       delete files[index]; //刪除對(duì)應(yīng)的文件
       tr.remove();
       uploadListIns.config.elem.next()[0].value = ''; //清空 input file 值,以免刪除后出現(xiàn)同名文件不可選
      });
 
      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 >上傳成功</span>');
     tds.eq(3).html(''); //清空操作
     return delete this.files[index]; //刪除文件隊(duì)列已經(jīng)上傳成功的文件
 
    } //code為后臺(tái)傳回來的數(shù)據(jù),具體多少自己定,
 
    //后臺(tái)只能傳回json格式數(shù)據(jù),不然會(huì)走error函數(shù);
 
    ,error: function(index, upload){
 
   }
 })
});

以上即是前端功能的實(shí)現(xiàn),后端方面,在Service層Impl下創(chuàng)建文件上傳的函數(shù):

public String uploadNoticeFile(MultipartFile fileList) {
  try{
   String pathname = filepath;
   String timeMillis = Long.toString(System.currentTimeMillis());//時(shí)間戳
   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);
 
   //存入數(shù)據(jù)庫
   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是我個(gè)人在寫項(xiàng)目時(shí)創(chuàng)建的類,讀者可根據(jù)實(shí)際情況自行運(yùn)用。

然后,在controller層中創(chuàng)建相應(yīng)的函數(shù):

@RequestMapping(value = "/upload", method = RequestMethod.POST)
 @ResponseBody
 public Map<String, Object> 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;
 }

以上,即實(shí)現(xiàn)了多文件上傳的全部功能。

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI