91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用Java?SpringBoot實現文件上傳功能

發布時間:2022-03-14 09:24:25 來源:億速云 閱讀:467 作者:小新 欄目:開發技術

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

測試代碼

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:指定允許上傳文件的最大大小,默認值為1MB。

max-request-size:指定允許multipart/form-data請求的最大大小,默認值為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("有文件上傳請求進來了");
        FileOutputStream fileOutputStream = null;
        InputStream inputStream = null;

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

啟動類:

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進行測試。

如何使用Java?SpringBoot實現文件上傳功能

如何使用Java?SpringBoot實現文件上傳功能

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

如何使用Java?SpringBoot實現文件上傳功能

上傳文件不存在。

如何使用Java?SpringBoot實現文件上傳功能

控制臺的輸出。

如何使用Java?SpringBoot實現文件上傳功能

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

景洪市| 苗栗市| 赤城县| 彭泽县| 林芝县| 云南省| 开阳县| 遂平县| 长治市| 洛宁县| 道真| 方山县| 东阿县| 新巴尔虎左旗| 庄河市| 吉木乃县| 禹城市| 库尔勒市| 望奎县| 丹凤县| 麻江县| 孙吴县| 万源市| 托里县| 运城市| 灌云县| 乐平市| 淮滨县| 淮南市| 瑞安市| 平陆县| 外汇| 恩平市| 临清市| 海门市| 鄂托克前旗| 垣曲县| 台南县| 江油市| 乌拉特中旗| 黄大仙区|