在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文件。