溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

如何使用Java?SpringBoot實(shí)現(xiàn)文件上傳功能

發(fā)布時(shí)間:2022-03-14 09:24:25 來(lái)源:億速云 閱讀:466 作者:小新 欄目:開(kāi)發(fā)技術(shù)

小編給大家分享一下如何使用Java SpringBoot實(shí)現(xiàn)文件上傳功能,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

測(cè)試代碼

pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<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 https://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>2.6.2</version>
    </parent>

    <packaging>jar</packaging>

    <groupId>com.kaven</groupId>
    <artifactId>springboot</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <name>springboot</name>
    <description>springboot</description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

application.properties(配置文件):

spring.servlet.multipart.max-file-size=500MB
spring.servlet.multipart.max-request-size=500MB

max-file-size:指定允許上傳文件的最大大小,默認(rèn)值為1MB。

max-request-size:指定允許multipart/form-data請(qǐng)求的最大大小,默認(rèn)值為10MB。

上傳接口:

package com.kaven.springboot.controller;

import org.apache.tomcat.util.http.fileupload.IOUtils;
import org.springframework.http.HttpStatus;
import org.springframework.util.StringUtils;
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 javax.servlet.http.HttpServletResponse;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;

@RestController
public class FilesController {

    @PostMapping(value="/upload", headers="content-type=multipart/form-data")
    public String upload(@RequestParam(value = "file") MultipartFile file,
                         HttpServletResponse response) throws IOException, InterruptedException {

        System.out.println("有文件上傳請(qǐng)求進(jìn)來(lái)了");
        FileOutputStream fileOutputStream = null;
        InputStream inputStream = null;

        try {
            // 上傳文件是否存在
            if (file != null && !file.isEmpty()) {
                // 如果上傳文件存在,獲取它的原始文件名
                String fileName = file.getOriginalFilename();
                if (StringUtils.hasText(fileName)) {
                    // 將上傳文件存儲(chǔ)在服務(wù)器的E盤(pán)下(Windows)
                    java.io.File outFile = new java.io.File("E:\" + fileName);
                    // 基于outFile創(chuàng)建文件輸出流實(shí)例
                    fileOutputStream = new FileOutputStream(outFile);
                    // 獲取上傳文件的輸入流
                    inputStream = file.getInputStream();
                    /*
                    * 將字節(jié)從輸入流復(fù)制到輸出流
                    * 此方法在內(nèi)部會(huì)緩沖輸入,因此無(wú)需使用BufferedInputStream
                    * 大型流(超過(guò)2GB)將在復(fù)制完成后返回字節(jié)復(fù)制值-1 ,因?yàn)闊o(wú)法將正確的字節(jié)數(shù)作為int返回
                    * 對(duì)于大型流,需要使用copyLarge(InputStream, OutputStream)方法
                    * 參數(shù):
                    * input – 要讀取的InputStream
                    * output - 要寫(xiě)入的OutputStream
                    * */
                    IOUtils.copy(inputStream, fileOutputStream);
                }
            }
            else {
                // 文件不存在
                response.setStatus(HttpStatus.BAD_REQUEST.value());
                return "文件不存在";
            }
        } catch (Exception e) {
            // 文件上傳錯(cuò)誤
            e.printStackTrace();
            response.setStatus(HttpStatus.INTERNAL_SERVER_ERROR.value());
            return "文件上傳錯(cuò)誤";
        } finally {
            if (fileOutputStream != null) {
                fileOutputStream.flush();
                fileOutputStream.close();
            }
        }
        // 文件上傳成功
        response.setStatus(HttpStatus.OK.value());
        return "文件上傳成功";
    }
}

啟動(dòng)類(lèi):

package com.kaven.springboot;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class SpringbootApplication {

    public static void main(String[] args) {
        SpringApplication application = new SpringApplication(SpringbootApplication.class);
        application.run(args);
    }
}

使用Postman進(jìn)行測(cè)試。

如何使用Java?SpringBoot實(shí)現(xiàn)文件上傳功能

如何使用Java?SpringBoot實(shí)現(xiàn)文件上傳功能

上傳的文件是完整的,可以播放(視頻文件)。

如何使用Java?SpringBoot實(shí)現(xiàn)文件上傳功能

上傳文件不存在。

如何使用Java?SpringBoot實(shí)現(xiàn)文件上傳功能

控制臺(tái)的輸出。

如何使用Java?SpringBoot實(shí)現(xiàn)文件上傳功能

看完了這篇文章,相信你對(duì)“如何使用Java SpringBoot實(shí)現(xiàn)文件上傳功能”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI