软件编程
位置:首页>> 软件编程>> java编程>> Spring boot实现文件上传功能

Spring boot实现文件上传功能

作者:卡通人物nnn  发布时间:2023-08-01 07:00:02 

标签: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也可以实现文件上传功能。参考文章:

来源:https://blog.csdn.net/woshizhangliang999/article/details/46711747

0
投稿

猜你喜欢

  • 在Java中,线程有5中不同状态,分别是:新建(New)、就绪(Runable)、运行(Running)、阻塞(Blocked)和死亡(De
  • 方法的覆盖在类继承中,子类可以修改从父类继承来的方法,也就是说子类能创建一个与父类方法有不同功能的方法,但具有相同的名称、返回值类型、参数列
  • 因为公司现在换成了nacos,所以自己写了demo学习一下。结果第一步就走不下去。在使用nacos-config读取nacos配置时。发现b
  • 本文实例讲述了Java泛型与数据库应用。分享给大家供大家参考,具体如下:一 点睛BaseDao定义了基本的数据库增删查改, 之后可以继承该泛
  • 为什么要使用Lambda?可以对一个接口进行非常简洁的实现。Lambda对接口的要求?接口中定义的抽象方法有且只有一个才可以。传统实现一个接
  • 本文实例为大家分享了android实现底部导航栏的具体代码,供大家参考,具体内容如下常见的底部导航栏动态效果实现步骤1.底部导航栏样式我们应
  • 目录1、什么是Java的内存模型2、为什么需要Java内存模型3、Java内存模型及操作规范4、Java内存模型规定的原子操作5、Java内
  • name和url属性的作用定义feign是声明式的web service客户端,它让微服务之间的调用变得更简单了,类似controller调
  • foreach遍历是C#常见的功能,而本文通过实例形式展现了C#使用yield关键字让自定义集合实现foreach遍历的方法。具体步骤如下:
  • 前言在实际开发中,大多数情况下都需要对 SQL 传入参数以获得想要的结果集,传入的情况分为两种情况:1、SQL语句的拼接,比如表名、like
  • java 打造阻塞式线程池的实例详解原来以为tiger已经自带了这种线程池,就是在任务数量超出时能够阻塞住投放任务的线程,主要想用在JMS消
  • 简单来说抽象类通常用来作为一个类族的最顶端的父类,用最底层的类表示现实中的具体事物,用最顶层的类表示该类族所有事物的共性。用abstract
  • 目标本文提供一种自定义注解,来实现业务审批操作的DEMO,不包含审批流程的配置功能。具体方案是自定义一个Aspect注解,拦截sevice方
  • 本文实例讲述了C#中foreach语句使用break暂停遍历的方法。分享给大家供大家参考。具体分析如下:下面的代码演示了在C#中使用fore
  • 其实这个比较简单,子线程怎么通知主线程,就是让子线程做完了自己的事儿就去干主线程的转回去干主线程的事儿。那么怎么让子线程去做主线程的事儿呢,
  • 前言之前我们探讨过一个.class文件是如何被加载到jvm中的。但是jvm内又是如何划分内存的呢?这个内被加载到了那一块内存中?jvm内存划
  • 本文实例讲述了安卓Android6.0权限动态获取操作。分享给大家供大家参考,具体如下:众所周知 , 安卓6.0现在运用的越来越广泛 , 因
  • Java 读取外部资源的方法详解在Java代码中经常有读取外部资源的要求:如配置文件等等,通常会把配置文件放在classpath下或者在we
  • 什么是HystrixHystrix是Netflix针对微服务分布式系统的熔断保护中间件,当我们的客户端连接远程的微服务时,有两种情况需要考虑
  • 目录1. 定义排序列数组2. 修改表头点击事件3. 修改表格排序方法4. 修改后台传参实现思路也比较简单,只需要用一个数组来存放所有排序的列
手机版 软件编程 asp之家 www.aspxhome.com