文章详情

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

请输入下面的图形验证码

提交验证

短信预约提醒成功

Spring Boot如何搭建文件上传服务

2023-05-30 21:09

关注

这篇文章主要介绍Spring Boot如何搭建文件上传服务,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

本文实例为大家分享了Spring Boot搭建文件上传服务的具体代码,供大家参考,具体内容如下

一、服务端

pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0"    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">   <modelVersion>4.0.0</modelVersion>  <parent>   <groupId>org.springframework.boot</groupId>   <artifactId>spring-boot-starter-parent</artifactId>   <version>1.3.3.RELEASE</version>  </parent>   <groupId>com.test.spring</groupId>  <artifactId>spring-boot</artifactId>  <version>1.0.0</version>  <packaging>jar</packaging>   <name>spring-boot</name>  <url>http://maven.apache.org</url>   <properties>   <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>   <maven.compiler.source>1.8</maven.compiler.source>   <maven.compiler.target>1.8</maven.compiler.target>  </properties>   <dependencies>   <dependency>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-web</artifactId>   </dependency>   <dependency>    <groupId>commons-io</groupId>    <artifactId>commons-io</artifactId>    <version>2.4</version>   </dependency>  </dependencies>  </project>
package com.test.spring;  import java.io.FileOutputStream; import java.io.InputStream; import java.io.OutputStream;  import javax.servlet.MultipartConfigElement; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.Part;  import org.apache.commons.io.IOUtils; 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.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody;  @Controller @EnableAutoConfiguration public class FileUploadController {  @RequestMapping(value="/upload", method=RequestMethod.POST)  @ResponseBody  public String upload(HttpServletRequest request) throws Exception  {   Part part = request.getPart("uploadfile");      InputStream input = part.getInputStream();      OutputStream output = new FileOutputStream("d:/tmp/" + part.getSubmittedFileName());   IOUtils.copy(input, output);      output.close();   input.close();      return "OK";  }   @Bean  MultipartConfigElement createMultipartConfigElement()  {   MultipartConfigFactory mcf = new MultipartConfigFactory();      mcf.setMaxFileSize("50MB");   return mcf.createMultipartConfig();  }    public static void main(String[] args) throws Exception {   SpringApplication.run(FileUploadController.class, args);  } }

注意:spring-boot-starter-web 1.3.3.RELEASE 依赖的servlet是3.1

二、客户端

客户端使用httpclient调用

先配置maven依赖

<dependency>  <groupId>org.apache.httpcomponents</groupId>  <artifactId>httpclient</artifactId>  <version>4.5.2</version> </dependency> <dependency>  <groupId>org.apache.httpcomponents</groupId>  <artifactId>httpmime</artifactId>  <version>4.5.2</version> </dependency>

测试代码

package com.test.upload;  import java.io.File;  import org.apache.http.HttpEntity; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpPost; import org.apache.http.entity.mime.MultipartEntityBuilder; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.apache.http.util.EntityUtils;  public class HttpUpload {  public static void main(String[] args)throws Exception  {   String url = "http://127.0.0.1:8080/upload";   CloseableHttpClient client = HttpClients.createDefault();      HttpPost httppost = new HttpPost(url);      MultipartEntityBuilder builder = MultipartEntityBuilder.create();   builder.addBinaryBody("uploadfile", new File("D:/develop/apache-karaf-3.0.4.zip"));      HttpEntity reqEntity = builder.build();      httppost.setEntity(reqEntity);      CloseableHttpResponse resp = client.execute(httppost);      String str = EntityUtils.toString(resp.getEntity());   System.out.println(str);      resp.close();   client.close();  } }

以上是“Spring Boot如何搭建文件上传服务”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

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

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

软考中级精品资料免费领

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

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

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

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

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

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

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