這篇文章主要講解了Springboot實(shí)現(xiàn)多文件上傳代碼的方法,內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。
寧江網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),寧江網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為寧江上1000家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站制作要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的寧江做網(wǎng)站的公司定做!
一說(shuō)明
spingMVC支持文件上傳,我們通過(guò)Apach 的 commons-fileupload 包的CommonsMultipartResolver 去實(shí)現(xiàn)了
spingMVC的MultipartResolver 。
本文章的示例是個(gè)簡(jiǎn)單的多文件上傳,根據(jù)不同的業(yè)務(wù)自行修改。
二pom.xlm
commons-fileupload commons-fileupload 1.3.3 org.springframework.boot spring-boot-starter-web
三 application.yml
spring: servlet: multipart: max-file-size: 200MB #單個(gè)文件上傳大小 max-request-size: 600MB #連續(xù)上傳文件大小 youku1327: file: root: path: "C:\\mydata\\generator\\version06\\" #存儲(chǔ)路徑
四controller
/** * @Author lsc * @Description* @Date 2019/10/2 20:58 * @Version 1.0 */ @RestController public class FileUploadController { @Value("${youku1327.file.root.path}") private String fileRootPath; @PostMapping("/file/upload") public String fileUpload(@RequestParam("files")MultipartFile[] files){ String filePath = ""; // 多文件上傳 for (MultipartFile file : files){ // 上傳簡(jiǎn)單文件名 String originalFilename = file.getOriginalFilename(); // 存儲(chǔ)路徑 filePath = new StringBuilder(fileRootPath) .append(System.currentTimeMillis()) .append(originalFilename) .toString(); try { // 保存文件 file.transferTo(new File(filePath)); } catch (IOException e) { e.printStackTrace(); } } return filePath; } }
五啟動(dòng)類
/** * @Author lsc * @Description* @Date 2019/10/2 20:54 * @Version 1.0 */ @SpringBootApplication public class FileUploadApplication { public static void main(String[] args) { SpringApplication.run(FileUploadApplication.class,args); } }
六測(cè)試
發(fā)送http的post請(qǐng)求,使用表單形式,key為files需要與MultipartFile[] 的參數(shù)名稱一致,挑選兩個(gè)文件,發(fā)送成功后,會(huì)看到最后返回的文件路徑;
打開保存的文件路徑可以發(fā)現(xiàn)已經(jīng)實(shí)現(xiàn)文件上傳。
看完上述內(nèi)容,是不是對(duì)Springboot實(shí)現(xiàn)多文件上傳代碼的方法有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。