文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

如何用SpringBoot框架来接收multipart/form-data文件

2023-07-06 13:33

关注

这篇“如何用SpringBoot框架来接收multipart/form-data文件”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“如何用SpringBoot框架来接收multipart/form-data文件”文章吧。

SpringBoot框架接收multipart/form-data文件

现在很多文件上传类型都是multipart/form-data类型的,HTTP请求如下所示:

如何用SpringBoot框架来接收multipart/form-data文件

可是问题就在于如果用传统的Struts2或者servlet等都可以很容易的实现文件接收的功能,例如下面的代码就可以实现:

boolean isMultipart = ServletFileUpload.isMultipartContent(request);//判断是否是表单文件类型  DiskFileItemFactory factory = new DiskFileItemFactory();  ServletFileUpload sfu = new ServletFileUpload(factory);  List items = sfu.parseRequest(request);//从request得到所有上传域的列表  for(Iterator iter = items.iterator();iter.hasNext();){      FileItem fileitem =(FileItem) iter.next();      if(!fileitem.isFormField()&&fileitem!=null){//判读不是普通表单域即是file          System.out.println("name:"+fileitem.getName());      }  }

可是今天我把这一段代码放在SpringBoot上面的时候就怎么也接收不到文件信息了,一直以为是前端什么数据传输错了。后来才知道原来SpringBoot有它自己的接收请求的代码。下面就给大家详细介绍一下它是如何实现这个功能的。

首选做一个简单的案例,也就是单个文件上传的案例。为了进行这个案例,首先需要建立一个SpringBoot框架

前台HTML代码:

<html>  <body>    <form action="/upload" method="POST" enctype="multipart/form-data">      <input type="file" name="file"/>      <input type="submit" value="Upload"/>     </form>  </body>  </html>

如何用SpringBoot框架来接收multipart/form-data文件

后台接收代码:

        @RequestMapping("/upload")        @ResponseBody        public String handleFileUpload(@RequestParam("file") MultipartFile file) {            if (!file.isEmpty()) {                try {                                        BufferedOutputStream out = new BufferedOutputStream(                            new FileOutputStream(new File(                                    file.getOriginalFilename())));                    System.out.println(file.getName());                  out.write(file.getBytes());                    out.flush();                    out.close();                } catch (FileNotFoundException e) {                    e.printStackTrace();                    return "上传失败," + e.getMessage();                } catch (IOException e) {                    e.printStackTrace();                    return "上传失败," + e.getMessage();                }                    return "上传成功";                } else {                return "上传失败,因为文件是空的.";            }        }

这样便可以接收multipart/form-data类型的文件。接下来,我们来看一个上传多个文件并且每个文件都有多个字段的案例。

前台HTML界面:

<!DOCTYPE html>    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"          xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">        <head>            <title>Hello World!</title>        </head>        <body>           <form method="POST" enctype="multipart/form-data" action="/batch/upload">                <p>文件1:<input type="text" name="id" /></p>               <p>文件2:<input type="text" name="name" /></p>               <p>文件3:<input type="file" name="file" /></p>               <p><input type="submit" value="上传" /></p>           </form>        </body>    </html>

如何用SpringBoot框架来接收multipart/form-data文件

后台接收代码:

@RequestMapping(value = "/batch/upload", method = RequestMethod.POST)          @ResponseBody          public String handleFileUpload(HttpServletRequest request) {            MultipartHttpServletRequest params=((MultipartHttpServletRequest) request);            List<MultipartFile> files = ((MultipartHttpServletRequest) request)                      .getFiles("file");             String name=params.getParameter("name");            System.out.println("name:"+name);            String id=params.getParameter("id");            System.out.println("id:"+id);            MultipartFile file = null;              BufferedOutputStream stream = null;              for (int i = 0; i < files.size(); ++i) {                  file = files.get(i);                  if (!file.isEmpty()) {                      try {                          byte[] bytes = file.getBytes();                          stream = new BufferedOutputStream(new FileOutputStream(                                  new File(file.getOriginalFilename())));                          stream.write(bytes);                          stream.close();                      } catch (Exception e) {                          stream = null;                          return "You failed to upload " + i + " => "                                  + e.getMessage();                    }                  } else {                      return "You failed to upload " + i                              + " because the file was empty.";                  }            }              return "upload successful";        }

这样就可以实现对多个文件的接收了功能了。

SpringBoot还可以对接收文件的格式还有个数等等进行限制,我这里就不多说了,大家有兴趣的可以自己去了解了解。

千万要记住SpringBoot对multipart/form-data类型的文件接收和其它是不一样的,大家以后遇到的时候要千万小心,不要像我一样一往无前的踩进去还傻傻的以为是前端的错误。

SpringBoot接收文件

package cn.juhe.controller; import net.sf.json.JSONObject;import org.springframework.web.bind.annotation.PostMapping;import org.springframework.web.bind.annotation.RequestParam;import org.springframework.web.bind.annotation.RestController;import org.springframework.web.multipart.MultipartFile;import org.springframework.web.multipart.MultipartHttpServletRequest; import javax.servlet.http.HttpServletRequest;import java.io.BufferedOutputStream;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.util.Date;import java.util.Iterator;import java.util.List;import java.util.Random; @RestControllerpublic class UploadTest {        @PostMapping("/upload")    public JSONObject handleFileUpload(HttpServletRequest request) {        Iterator<String> fileNames = ((MultipartHttpServletRequest) request).getFileNames();        JSONObject result = null;        while (fileNames.hasNext()) {            String next = fileNames.next();            MultipartFile file = ((MultipartHttpServletRequest) request).getFile(next);            System.out.println("file.getName():" + file.getName());            System.out.println("file.getOriginalFilename():" + file.getOriginalFilename());            String folder = "E:\\upload\\received\\";            String picName = new Date().getTime() + ".jpg";            File filelocal = new File(folder, picName);            result = new JSONObject();            result.put(picName, folder + picName);            try {                file.transferTo(filelocal);            } catch (IOException e) {                e.printStackTrace();            }        }        JSONObject jsonObject = new JSONObject();        jsonObject.put("error_code", 223805);        jsonObject.put("reason", "文件过大或上传发生错误");        Random random = new Random();        if (random.nextInt(10) > 3) {            jsonObject.put("error_code", 0);            jsonObject.put("reason", "success");             jsonObject.put("result", result);        }        return jsonObject;    }         @PostMapping("/uploadCommon")    //public JSONObject upload(MultipartFile multipartFile) throws IOException {    public JSONObject upload(@RequestParam("A") MultipartFile multipartFile) throws IOException {        String name = multipartFile.getName();//上传文件的参数名        String originalFilename = multipartFile.getOriginalFilename();//上传文件的文件路径名        long size = multipartFile.getSize();//文件大小        String folder = "E:\\upload\\received\\";        String picName = new Date().getTime() + ".jpg";        File filelocal = new File(folder, picName);        multipartFile.transferTo(filelocal);               JSONObject jsonObject = new JSONObject();        jsonObject.put("error_code", 223805);        jsonObject.put("reason", "文件过大或上传发生错误");        Random random = new Random();        if (random.nextInt(10) > 3) {            jsonObject.put("error_code", 0);            jsonObject.put("reason", "success");            JSONObject result = new JSONObject();            result.put(name, folder + picName);            jsonObject.put("result", result);        }        return jsonObject;    }}

以上就是关于“如何用SpringBoot框架来接收multipart/form-data文件”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯