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

溫馨提示×

溫馨提示×

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

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

SpringBoot文件上傳處理

發布時間:2024-11-27 15:05:07 來源:億速云 閱讀:78 作者:小樊 欄目:編程語言

在Spring Boot中,處理文件上傳非常簡單。你需要做的是:

  1. 添加依賴

在你的pom.xml文件中添加以下依賴:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
  1. 創建Controller

創建一個Controller類來處理文件上傳請求。例如,創建一個名為FileUploadController的類:

import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
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 java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;

@RestController
public class FileUploadController {

    private static final String UPLOAD_DIR = "uploads/";

    @PostMapping("/upload")
    public ResponseEntity<String> handleFileUpload(@RequestParam("file") MultipartFile file) {
        if (file.isEmpty()) {
            return new ResponseEntity<>("Please select a file to upload", HttpStatus.BAD_REQUEST);
        }

        try {
            byte[] bytes = file.getBytes();
            Path path = Paths.get(UPLOAD_DIR + file.getOriginalFilename());
            Files.write(path, bytes);

            return new ResponseEntity<>("File uploaded successfully: " + file.getOriginalFilename(), HttpStatus.OK);
        } catch (IOException e) {
            e.printStackTrace();
            return new ResponseEntity<>("Failed to upload file: " + file.getOriginalFilename(), HttpStatus.INTERNAL_SERVER_ERROR);
        }
    }
}

在這個例子中,我們創建了一個名為handleFileUpload的方法,它接收一個MultipartFile類型的參數file。這個方法將文件保存到服務器UPLOAD_DIR目錄下。

  1. 測試文件上傳

你可以使用Postman或者curl等工具測試文件上傳功能。例如,使用curl發送一個POST請求:

curl -X POST -H "Content-Type: multipart/form-data" -F "file=@/path/to/your/file.txt" http://localhost:8080/upload

/path/to/your/file.txt替換為你要上傳的文件的實際路徑。如果上傳成功,你將收到一個包含文件名的響應。

向AI問一下細節

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

AI

建平县| 磐安县| 德庆县| 右玉县| 乐陵市| 资阳市| 安化县| 宜昌市| 阿拉善右旗| 淮南市| 竹山县| 金昌市| 保山市| 永定县| 山阳县| 安溪县| 衡东县| 板桥市| 诸暨市| 兴宁市| 淅川县| 耿马| 呼伦贝尔市| 库车县| 朝阳区| 莒南县| 米脂县| 南宫市| 遵化市| 盐津县| 信宜市| 洪泽县| 五原县| 灵武市| 名山县| 昌乐县| 上蔡县| 青河县| 兴城市| 英德市| 嘉黎县|