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

溫馨提示×

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
饶平县| 楚雄市| 庆安县| 镇远县| 会昌县| 通州区| 古田县| 中西区| 苍山县| 太谷县| 广饶县| 永仁县| 景泰县| 泰安市| 炎陵县| 织金县| 白朗县| 清涧县| 凤翔县| 曲靖市| 永德县| 浦县| 张家界市| 东安县| 焦作市| 灯塔市| 呼图壁县| 平武县| 虹口区| 太谷县| 博白县| 当涂县| 东光县| 南部县| 交口县| 江津市| 江城| 遂平县| 洛隆县| 响水县| 青川县|