亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

springboot上傳下載功能怎么實現

小億
91
2023-11-06 22:42:06
欄目: 編程語言

在Spring Boot中,可以使用MultipartFile接口來實現文件上傳功能,使用ResponseEntity來實現文件下載功能。

文件上傳功能的實現步驟如下:

  1. 在Controller中添加一個處理文件上傳的方法,并使用@RequestParam注解來接收上傳的文件參數。
@PostMapping("/upload")
public String uploadFile(@RequestParam("file") MultipartFile file) {
    // 處理文件上傳邏輯
    // ...
    return "上傳成功";
}
  1. 在application.properties或application.yml配置文件中添加文件上傳相關的配置。
spring:
  servlet:
    multipart:
      max-file-size: 10MB
      max-request-size: 10MB
  1. 在前端頁面中添加一個文件上傳表單,并設置enctype屬性為multipart/form-data。
<form th:action="@{/upload}" method="post" enctype="multipart/form-data">
    <input type="file" name="file">
    <button type="submit">上傳</button>
</form>

文件下載功能的實現步驟如下:

  1. 在Controller中添加一個處理文件下載的方法,并使用PathVariable注解來接收文件名參數。
@GetMapping("/download/{filename}")
public ResponseEntity<Resource> downloadFile(@PathVariable String filename) {
    // 獲取文件路徑
    String filePath = "path/to/file/" + filename;
    // 創建文件資源對象
    Resource fileResource = new FileSystemResource(filePath);
    
    // 設置響應頭
    HttpHeaders headers = new HttpHeaders();
    headers.add(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=" + filename);
    
    return ResponseEntity.ok()
            .headers(headers)
            .contentLength(fileResource.contentLength())
            .contentType(MediaType.APPLICATION_OCTET_STREAM)
            .body(fileResource);
}
  1. 在前端頁面中添加一個下載按鈕,并設置對應的下載鏈接。
<a th:href="@{/download/filename}" download>下載</a>

其中,filename為要下載的文件名。

以上就是Spring Boot中實現文件上傳下載功能的基本步驟。具體實現根據具體需求可能會有所不同,可以根據需要進行調整。

0
西贡区| 嘉义县| 偏关县| 林周县| 米泉市| 宜良县| 九江县| 社会| 沅江市| 台安县| 页游| 泗洪县| 西吉县| 资兴市| 普兰县| 平湖市| 罗源县| 边坝县| 南涧| 四平市| 隆回县| 龙门县| 漳平市| 察雅县| 灵川县| 石渠县| 綦江县| 隆安县| 冷水江市| 甘洛县| 湖南省| 逊克县| 博野县| 梁河县| 肥东县| 济南市| 子长县| 突泉县| 华容县| 玉树县| 锡林浩特市|