真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringBoot中怎么實(shí)現(xiàn)單文件上傳功能

本篇文章給大家分享的是有關(guān)SpringBoot中怎么實(shí)現(xiàn)單文件上傳功能,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

創(chuàng)新互聯(lián)建站主要從事網(wǎng)站設(shè)計(jì)、做網(wǎng)站、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)長安,十載網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):028-86922220

1. 頁面testFile.html

測試文件上傳        

 
    單一文件上傳實(shí)例:       文件1:
           
   
 

2. FileController.java

package com.stormkai.controller;import java.io.File;import java.io.IOException;import java.util.HashMap;import java.util.Map;import javax.servlet.http.HttpServletRequest;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.PostMapping;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestParam;import org.springframework.web.bind.annotation.ResponseBody;import org.springframework.web.multipart.MultipartFile;import lombok.extern.slf4j.Slf4j;@Controller@RequestMapping("/file")@Slf4jpublic class FileController {  @GetMapping("/index") public String index() { return "testFile"; }  @PostMapping("/upload1")  @ResponseBody  public Map upload1(@RequestParam("file") MultipartFile file, HttpServletRequest request) throws IOException {        log.info("系統(tǒng)路徑={}",request.getSession().getServletContext().getRealPath(""));    String path = "F:\\uploadfile\\";    if(!new File(path).exists()){     new File(path).mkdirs(); }    file.transferTo(new File(path + file.getOriginalFilename()));    Map result = new HashMap<>();    result.put("status", "true");    result.put("data", null);    return result;  }}

以上就是SpringBoot中怎么實(shí)現(xiàn)單文件上傳功能,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


本文名稱:SpringBoot中怎么實(shí)現(xiàn)單文件上傳功能
URL地址:http://weahome.cn/article/pjihip.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部