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

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

使用SpringBoot怎么實(shí)現(xiàn)文件上傳與下載

這篇文章將為大家詳細(xì)講解有關(guān)使用SpringBoot怎么實(shí)現(xiàn)文件上傳與下載,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

成都創(chuàng)新互聯(lián)專注于企業(yè)營銷型網(wǎng)站、網(wǎng)站重做改版、慶元網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5高端網(wǎng)站建設(shè)、商城網(wǎng)站制作、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為慶元等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。

單文件上傳

/ 單文件上傳
@RequestMapping(value = "/upload")
@ResponseBody
public String upload(@RequestParam("file") MultipartFile file) {
  try {
  if (file.isEmpty()) {
    return "文件為空";
  }
  // 獲取文件名
  String fileName = file.getOriginalFilename();
  logger.info("上傳的文件名為:" + fileName);
  // 獲取文件的后綴名
  String suffixName = fileName.substring(fileName.lastIndexOf("."));
  logger.info("文件的后綴名為:" + suffixName);

  // 設(shè)置文件存儲(chǔ)路徑
  String filePath = "D://aim//";
  String path = filePath + fileName + suffixName;

  File dest = new File(path);
  // 檢測(cè)是否存在目錄
  if (!dest.getParentFile().exists()) {
    dest.getParentFile().mkdirs();// 新建文件夾
  }
  file.transferTo(dest);// 文件寫入
  return "上傳成功";
  } catch (IllegalStateException e) {
    e.printStackTrace();
  } catch (IOException e) {
    e.printStackTrace();
  }
  return "上傳失敗";
}

如果想要修改文件路徑及文件名,修改filePath以及fileName即可。

多文件上傳

/多文件上傳
@RequestMapping(value = "/uploadMore", method = RequestMethod.POST)
@ResponseBody
public String handleFileUpload(HttpServletRequest request) {
  List files = ((MultipartHttpServletRequest) request).getFiles("file");
  MultipartFile file = null;
  BufferedOutputStream stream = null;
  for (int i = 0; i < files.size(); ++i) {
    file = files.get(i);
    String filePath = "D://aim//";
    if (!file.isEmpty()) {
      try {
        byte[] bytes = file.getBytes();
        stream = new BufferedOutputStream(new FileOutputStream(
            new File(filePath + file.getOriginalFilename())));//設(shè)置文件路徑及名字
        stream.write(bytes);// 寫入
        stream.close();
      } catch (Exception e) {
        stream = null;
        return "第 " + i + " 個(gè)文件上傳失敗 ==> "
            + e.getMessage();
      }
    } else {
      return "第 " + i
          + " 個(gè)文件上傳失敗因?yàn)槲募榭?;
    }
  }
  return "上傳成功";
}

文件下載

//文件下載相關(guān)代碼
@RequestMapping("/download")
public String downloadFile(HttpServletRequest request, HttpServletResponse response) {
  String fileName = "aim_test.txt";// 設(shè)置文件名,根據(jù)業(yè)務(wù)需要替換成要下載的文件名
  if (fileName != null) {
    //設(shè)置文件路徑
    String realPath = "D://aim//"
    File file = new File(realPath , fileName);
    if (file.exists()) {
      response.setContentType("application/force-download");// 設(shè)置強(qiáng)制下載不打開
      response.addHeader("Content-Disposition", "attachment;fileName=" + fileName);// 設(shè)置文件名
      byte[] buffer = new byte[1024];
      FileInputStream fis = null;
      BufferedInputStream bis = null;
      try {
        fis = new FileInputStream(file);
        bis = new BufferedInputStream(fis);
        OutputStream os = response.getOutputStream();
        int i = bis.read(buffer);
        while (i != -1) {
          os.write(buffer, 0, i);
          i = bis.read(buffer);
        }
        System.out.println("success");
      } catch (Exception e) {
        e.printStackTrace();
      } finally {
        if (bis != null) {
          try {
            bis.close();
          } catch (IOException e) {
            e.printStackTrace();
          }
        }
        if (fis != null) {
          try {
            fis.close();
          } catch (IOException e) {
            e.printStackTrace();
          }
        }
      }
    }
  }
  return null;
}

MultipartConfig配置

可以通過MultipartConfig配置類對(duì)文件上傳進(jìn)行全局控制。

@Configuration
public class MultipartConfig {

  @Bean
  public MultipartConfigElement multipartConfigElement() {
    MultipartConfigFactory factory = new MultipartConfigFactory();
    // 置文件大小限制 ,超出此大小頁面會(huì)拋出異常信息
    factory.setMaxFileSize("2MB"); //KB,MB
    // 設(shè)置總上傳數(shù)據(jù)總大小
    factory.setMaxRequestSize("20MB");
    // 設(shè)置文件臨時(shí)文件夾路徑
    // factory.setLocation("E://test//");
    // 如果文件大于這個(gè)值,將以文件的形式存儲(chǔ),如果小于這個(gè)值文件將存儲(chǔ)在內(nèi)存中,默認(rèn)為0
    // factory.setMaxRequestSize(0);
    return factory.createMultipartConfig();
  }
}

關(guān)于使用SpringBoot怎么實(shí)現(xiàn)文件上傳與下載就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。


分享文章:使用SpringBoot怎么實(shí)現(xiàn)文件上傳與下載
本文地址:http://weahome.cn/article/gigoei.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部