您好,登錄后才能下訂單哦!
這篇文章主要介紹“java怎么實現文件夾上傳功能”,在日常操作中,相信很多人在java怎么實現文件夾上傳功能問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”java怎么實現文件夾上傳功能”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
1.添加一個 type=file 的 input 提交組件,添加 webkitdirectory 標識來使用文件夾上傳功能
2.添加 @change=“uploadSoundCodeFolder” 事件,當我們上傳了文件夾后將觸發 uploadSoundCodeFolder() 函數來處理上傳邏輯
<form id="uploadSoundCodeFolderForm" method="post" enctype="multipart/form-data"> <input id="fileFolder" name="fileFolder" type="file" @change="uploadSoundCodeFolder" webkitdirectory> </form>
uploadSoundCodeFolder() 實現邏輯如下
uploadSoundCodeFolder(e){ this.uploadSoundCodeLoading = true; //獲取到選中的文件夾內的所有文件 //files 為一個集合 //可通過遍歷 files 的方式獲取到每個文件的大小等數據,來實現大小限制等需求 let files = e.target.files; //中間省略大小限制等需求...... //獲取表單數據 let formData = new FormData(document.getElementById("uploadSoundCodeFolderForm")); //調用后臺服務方法來提交該表單數據 uploadSoundCode(formData).then((res)=>{ _this.$message.success("上傳成功") //上傳成功后清空表單數據 $("#fileFolder").val(''); }) }
這樣做的好處是使用了form文件夾上傳的功能,卻不用使用他的UI
<!-- 首先創建一個按鈕用來觸發上傳事件 uploadSoundCodeBtn() --> <el-button v-loading="uploadSoundCodeLoading" @click="uploadSoundCodeBtn"> 上傳文件夾 </el-button>
/*上傳事件觸發的方法*/ uploadSoundCodeBtn(){ $("#fileFolder").click(); },
這里我們使用 List fileFolde 類型來接受前端發來的文件集合,fileFolde為表單里面的 name
@RequestMapping(value="/uploadSoundCode",method= RequestMethod.POST) public AjaxResult uploadSoundCode(List<MultipartFile> fileFolde) throws IOException { String soundCodeUrl = HereUtil.uploadSoundCode(fileFolder); return AjaxResult.success(soundCodeUrl); }
然后根據業務將文件保存到服務器就行了
public static String uploadSoundCode(List<MultipartFile> files) throws IOException { for (MultipartFile file : files) { String fileName = file.getOriginalFilename(); if (StrUtil.isBlank(fileName)){ continue; } //上傳后的URL全路徑 String fullFilePath = "上傳的跟路徑" + fileName; FileUtil.writeFromStream(file.getInputStream(), fullFilePath); } return ""; }
到此,關于“java怎么實現文件夾上傳功能”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。