我正在尝试从文件路径列表中读取创建一个 zip 文件。我想将 zip 文件作为字节数组,以便我可以将其作为 ResponseEntity 对象返回到网页。问题是当我尝试FileOutputStream时它可以工作。我试过ByteArrayOutputStream压缩文件已损坏。下面是代码
//FileOutputStream bos = new FileOutputStream("C:\\files\\zipfile.zip");
ByteArrayOutputStream bos = new ByteArrayOutputStream();
ZipOutputStream zos = new ZipOutputStream(bos);
ArrayList<String> filepaths = getAllFiles();
byte[] contents = null;
for(String path : filepaths) {
File pdf = new File(path);
FileInputStream fis = new FileInputStream(pdf);
ZipEntry zipEntry = new ZipEntry(path.substring(path.lastIndexOf(File.separator)+1));
zos.putNextEntry(zipEntry);
byte[] buffer = new byte[1024];
int len;
while ((len = fis.read(buffer)) > 0) {
zos.write(buffer,0,len);
}
fis.close();
zos.closeEntry();
zos.flush();
}
contents = new byte[bos.size()];
contents = bos.toByteArray();
zos.close();
bos.close();
对于您在上面看到的第 2 行,如果我使用ByteArrayOutputStream,则 zip 文件似乎已损坏。但是,如果我使用FileOutputstream,我将无法打开 zip 文件及其内容。
这是我将 zip 字节数组发送回网页的方式。所有这些代码都发生在一个弹簧控制器方法中
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.parseMediaType("application/zip"));
headers.setContentDispositionFormData(zipfileNm, zipfileNm);
ResponseEntity<byte[]> response = new ResponseEntity<byte[]>(contents, headers, HttpStatus.OK);
return response;