Spring实现文件上传功能

 更新时间:2017年01月25日 10:14:15   作者:Rollen Holt  
本篇文章主要介绍了Spring实现文件上传功能,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

本篇文章,我们要来做一个Spring的文件上传功能:

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>

</html> 

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

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了,是不是很简单啊。 

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

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

相关文章

  • 详解spring mvc 请求转发和重定向

    详解spring mvc 请求转发和重定向

    这篇文章主要介绍了详解spring mvc 请求转发和重定向,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-02-02
  • Java+opencv3.2.0实现模板匹配

    Java+opencv3.2.0实现模板匹配

    这篇文章主要为大家详细介绍了Java+opencv3.2.0实现模板匹配的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-02-02
  • java实现动态代理示例分享

    java实现动态代理示例分享

    动态代理作为代理模式的一种扩展形式,广泛应用于框架(尤其是基于AOP的框架)的设计与开发,本文将通过实例来讲解Java动态代理的实现过程。
    2014-03-03
  • spring boot自定义404错误信息的方法示例

    spring boot自定义404错误信息的方法示例

    这篇文章主要介绍了spring boot自定义404错误信息的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考借鉴,下面随着小编来一起学习学习吧。
    2017-09-09
  • 如何解决java.util.concurrent.CancellationException问题

    如何解决java.util.concurrent.CancellationException问题

    这篇文章主要介绍了如何解决java.util.concurrent.CancellationException问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
    2024-05-05
  • Java中SpringBoot自定义Starter详解

    Java中SpringBoot自定义Starter详解

    这篇文章主要介绍了Java中SpringBoot自定义Starter详解,Starter是Spring Boot中的一个非常重要的概念,Starter相当于模块,它能将模块所需的依赖整合起来并对模块内的Bean根据环境进行自动配置,需要的朋友可以参考下
    2023-07-07
  • 深入浅出Java mvc_动力节点Java学院整理

    深入浅出Java mvc_动力节点Java学院整理

    这篇文章主要为大家详细介绍了MVC的基础知识,MVC是一个框架模式,它强制性的使应用程序的输入、处理和输出分开,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-08-08
  • Java实现多级表头和复杂表头的导出功能

    Java实现多级表头和复杂表头的导出功能

    这篇文章主要为大家详细介绍了Java实现多级表头和复杂表头的导出功能的相关知识,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下
    2024-03-03
  • Spring Data JPA 复杂/多条件组合分页查询

    Spring Data JPA 复杂/多条件组合分页查询

    本文主要介绍了Spring Data JPA 复杂/多条件组合分页查询的相关资料。具有很好的参考价值。下面跟着小编一起来看下吧
    2017-04-04
  • 深入理解Java责任链模式实现灵活的请求处理流程

    深入理解Java责任链模式实现灵活的请求处理流程

    本文详细介绍了Java中的责任链模式,帮助您理解其工作原理,以及如何在代码中实现。该模式可以将请求沿着处理链路传递,实现灵活的请求处理流程。通过本文的学习,您将获得在Java应用程序中使用责任链模式的知识和技能
    2023-04-04

最新评论