Spring boot实现文件上传功能

 更新时间:2021年10月26日 09:31:45   作者:卡通人物nnn  
这篇文章主要为大家详细介绍了Spring boot实现文件上传功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Spring boot实现文件上传的具体代码,供大家参考,具体内容如下

1. 创建一个Maven的web工程,然后配置pom.xml文件,增加依赖:

<dependency> 
 <groupId>org.springframework.boot</groupId> 
 <artifactId>spring-boot-starter-web</artifactId> 
 <version>1.0.2.RELEASE</version> 
</dependency> 

2. 在webapp目录下的index.jsp文件中输入一个表单:

<html> 
<body> 
<form method="POST" enctype="multipart/form-data" action="/upload"> 
 File to upload: <input type="file" name="file"><br /> 
 Name: <input type="text" name="name"><br /> <br /> 
 <input type="submit" value="Upload"> 
  Press here to upload the file! 
</form> 
</body> 

这个表单就是我们模拟的上传页面

3. 编写处理这个表单的Controller:

import java.io.BufferedOutputStream; 
import java.io.File; 
import java.io.FileOutputStream; 
 
import org.springframework.stereotype.Controller; 
import org.springframework.web.bind.annotation.RequestMapping; 
import org.springframework.web.bind.annotation.RequestMethod; 
import org.springframework.web.bind.annotation.RequestParam; 
import org.springframework.web.bind.annotation.ResponseBody; 
import org.springframework.web.multipart.MultipartFile; 
 
@Controller 
public class FileUploadController { 
 
 @RequestMapping(value="/upload", method=RequestMethod.GET) 
 public @ResponseBody String provideUploadInfo() { 
  return "You can upload a file by posting to this same URL."; 
 } 
 
 @RequestMapping(value="/upload", method=RequestMethod.POST) 
 public @ResponseBody String handleFileUpload(@RequestParam("name") String name, 
   @RequestParam("file") MultipartFile file){ 
  if (!file.isEmpty()) { 
   try { 
    byte[] bytes = file.getBytes(); 
    BufferedOutputStream stream = 
      new BufferedOutputStream(new FileOutputStream(new File(name + "-uploaded"))); 
    stream.write(bytes); 
    stream.close(); 
    return "You successfully uploaded " + name + " into " + name + "-uploaded !"; 
   } catch (Exception e) { 
    return "You failed to upload " + name + " => " + e.getMessage(); 
   } 
  } else { 
   return "You failed to upload " + name + " because the file was empty."; 
  } 
 } 
 
} 

4. 然后我们对上传的文件做一些限制,同时编写main方法来启动这个web :

import org.springframework.boot.SpringApplication; 
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; 
import org.springframework.boot.context.embedded.MultiPartConfigFactory; 
import org.springframework.context.annotation.Bean; 
import org.springframework.context.annotation.ComponentScan; 
import org.springframework.context.annotation.Configuration; 
 
import javax.servlet.MultipartConfigElement; 
 
@Configuration 
@ComponentScan 
@EnableAutoConfiguration 
public class Application { 
 
 @Bean 
 public MultipartConfigElement multipartConfigElement() { 
  MultiPartConfigFactory factory = new MultiPartConfigFactory(); 
  factory.setMaxFileSize("128KB"); 
  factory.setMaxRequestSize("128KB"); 
  return factory.createMultipartConfig(); 
 } 
 
 public static void main(String[] args) { 
  SpringApplication.run(Application.class, args); 
 } 
} 

5. 然后访问http://localhost:8080/upload就可以看到页面了。

上面的例子是实现的是单个文件上传的功能,假定我们现在要实现文件批量上传的功能的话,我们只需要简单的修改一下上面的代码就行,考虑到篇幅的问题,下面只是贴出和上面不同的代码,没有贴出的说明和上面一样。:

1.新增batchUpload.jsp文件

<html> 
<body> 
<form method="POST" enctype="multipart/form-data" 
  action="/batch/upload"> 
 File to upload: <input type="file" name="file"><br /> 
 File to upload: <input type="file" name="file"><br /> 
 <input type="submit" value="Upload"> Press here to upload the file! 
</form> 
</body> 
</html> 

2. 新增BatchFileUploadController.java文件:

import org.springframework.stereotype.Controller; 
import org.springframework.web.bind.annotation.RequestMapping; 
import org.springframework.web.bind.annotation.RequestMethod; 
import org.springframework.web.bind.annotation.ResponseBody; 
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.util.List; 
 
/** 
 * Created by wenchao.ren on 2014/4/26. 
 */ 
 
@Controller 
public class BatchFileUploadController { 
 
 @RequestMapping(value="/batch/upload", method= RequestMethod.POST) 
 public @ResponseBody 
 String handleFileUpload(HttpServletRequest request){ 
  List<MultipartFile> files = ((MultipartHttpServletRequest)request).getFiles("file"); 
  for (int i =0; i< files.size(); ++i) { 
   MultipartFile file = files.get(i); 
   String name = file.getName(); 
   if (!file.isEmpty()) { 
    try { 
     byte[] bytes = file.getBytes(); 
     BufferedOutputStream stream = 
       new BufferedOutputStream(new FileOutputStream(new File(name + i))); 
     stream.write(bytes); 
     stream.close(); 
    } catch (Exception e) { 
     return "You failed to upload " + name + " => " + e.getMessage(); 
    } 
   } else { 
    return "You failed to upload " + name + " because the file was empty."; 
   } 
  } 
  return "upload successful"; 
 } 
} 

这样一个简单的批量上传文件的功能就ok了,是不是很简单啊。

注意:上面的代码只是为了演示而已,所以编码风格上采取了随性的方式,不建议大家模仿。

参考资料:MultipartResolver实现文件上传功能

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

1. MultipartResolver也可以实现文件上传功能。参考文章:

相关文章

  • Springboot集成Mybatis-Flex的示例详解

    Springboot集成Mybatis-Flex的示例详解

    Mybatis-Flex 是一个优雅的 Mybatis 增强框架,它非常轻量、同时拥有极高的性能与灵活性,本文主要介绍了Springboot集成Mybatis-Flex的示例详解,具有一定的参考价值,感兴趣的可以了解一下
    2024-01-01
  • java TreeUtil菜单递归工具类

    java TreeUtil菜单递归工具类

    这篇文章主要为大家详细介绍了java TreeUtil菜单递归工具类,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-08-08
  • 深入浅析Java 循环中标签的作用

    深入浅析Java 循环中标签的作用

    这篇文章主要介绍了深入浅析Java 循环中标签的作用的相关资料,需要的朋友可以参考下
    2016-02-02
  • SpringBoot启动时自动执行sql脚本的方法步骤

    SpringBoot启动时自动执行sql脚本的方法步骤

    本文主要介绍了SpringBoot启动时自动执行sql脚本的方法步骤,文中通过示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-09-09
  • 如何设计一个安全的API接口详解

    如何设计一个安全的API接口详解

    在日常开发中,总会接触到各种接口,前后端数据传输接口,第三方业务平台接口,下面这篇文章主要给大家介绍了关于如何设计一个安全的API接口的相关资料,需要的朋友可以参考下
    2021-08-08
  • Struts2 的国际化实现方式示例

    Struts2 的国际化实现方式示例

    这篇文章主要介绍了Struts2 的国际化实现方式示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-10-10
  • 详解Spring Cloud Hystrix断路器实现容错和降级

    详解Spring Cloud Hystrix断路器实现容错和降级

    本篇文章主要介绍了详解Spring Cloud Hystrix断路器实现容错和降级,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-05-05
  • Java web过滤器验证登录防止未登录进入界面

    Java web过滤器验证登录防止未登录进入界面

    这篇文章主要介绍了Java web过滤器验证登录防止未登录进入界面,在一些系统中经常可以用到此功能,对java web 验证登录知识感兴趣的朋友一起看下吧
    2016-08-08
  • SpringBoot使用JSP作为视图模板的方法

    SpringBoot使用JSP作为视图模板的方法

    这篇文章主要介绍了SpringBoot使用JSP作为视图模板的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-08-08
  • kafka并发写大消息异常TimeoutException排查记录

    kafka并发写大消息异常TimeoutException排查记录

    这篇文章主要为大家介绍了kafka并发写大消息异常TimeoutException的排查记录及解决方案,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步
    2022-02-02

最新评论