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

溫馨提示×

springboot怎么導出zip文件

小億
412
2023-11-20 17:18:30
欄目: 編程語言

在Spring Boot應用中,可以使用java.util.zip包來導出zip文件。以下是一個示例代碼,演示了如何將多個文件壓縮為一個zip文件并導出。

首先,你需要在pom.xml文件中添加以下依賴:

<dependencies>
    ...
    <dependency>
        <groupId>org.zeroturnaround</groupId>
        <artifactId>zt-zip</artifactId>
        <version>1.14</version>
    </dependency>
    ...
</dependencies>

然后,你可以在Spring Boot的控制器中添加一個處理請求的方法來導出zip文件:

import org.zeroturnaround.zip.ZipUtil;

import java.io.File;
import java.io.IOException;

@RestController
public class ZipController {

    @GetMapping("/export")
    public ResponseEntity<Resource> exportZip() throws IOException {
        // 創建一個臨時目錄用于存儲要壓縮的文件
        File tempDir = new File(System.getProperty("java.io.tmpdir") + "/temp");
        tempDir.mkdirs();

        // 創建一些臨時文件用于示例
        File file1 = new File(tempDir.getPath() + "/file1.txt");
        File file2 = new File(tempDir.getPath() + "/file2.txt");
        file1.createNewFile();
        file2.createNewFile();

        // 壓縮臨時目錄中的文件到zip文件
        File zipFile = new File(System.getProperty("java.io.tmpdir") + "/example.zip");
        ZipUtil.pack(tempDir, zipFile);

        // 創建一個文件資源對象
        Path path = Paths.get(zipFile.getAbsolutePath());
        UrlResource resource = new UrlResource(path.toUri());

        // 設置響應頭信息
        HttpHeaders headers = new HttpHeaders();
        headers.add(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=example.zip");

        // 返回zip文件作為響應
        return ResponseEntity.ok()
                .headers(headers)
                .contentLength(resource.contentLength())
                .contentType(MediaType.parseMediaType("application/octet-stream"))
                .body(resource);
    }

}

在示例代碼中,首先創建一個臨時目錄tempDir,然后創建一些示例文件并保存在臨時目錄中。接下來,使用ZipUtil.pack()方法將臨時目錄中的文件壓縮為一個zip文件zipFile。然后,使用UrlResource將zip文件包裝為一個文件資源對象。最后,設置響應頭信息,將zip文件作為響應返回。

注意:在示例中,使用了zt-zip庫來操作zip文件。你可以根據自己的需求選擇其他庫或使用Java內置的java.util.zip包。

啟動Spring Boot應用后,可以通過訪問/export路徑來導出zip文件。

0
襄城县| 宝兴县| 海宁市| 博白县| 松溪县| 营口市| 南开区| 平昌县| 河北省| 厦门市| 垫江县| 多伦县| 清流县| 宁都县| 凭祥市| 六盘水市| 海城市| 淮南市| 色达县| 渭南市| 连山| 定兴县| 临漳县| 天气| 保定市| 邯郸县| 且末县| 南宁市| 昌图县| 独山县| 亳州市| 双柏县| 嵊州市| 大新县| 芦溪县| 酉阳| 五莲县| 鸡泽县| 城口县| 青河县| 扶余县|