gpt4 book ai didi

java - 在 Servlet 端使用 excel 表生成内存中的 zip 文件

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:38:22 25 4
gpt4 key购买 nike

基本上,我是在尝试从服务器向客户端发送带有 Excel 工作表的 zip 文件。

方法一:我的 Servlet 代码

ByteArrayOutputStream bos = new ByteArrayOutputStream();
ZipOutputStream zos = new ZipOutputStream(bos);

for(Map.Entry<String, List<Data>> entry : DatasMap.entrySet())
{
String fileName = entry.getKey();
List<Data> excelData = entry.getValue();

// The below code constructs the workbook and returns it
SXSSFWorkbook workBook = getWorkBook(fileName, excelData);
ZipEntry zipEntry = new ZipEntry(fileName );
zos.putNextEntry(zipEntry);
workBook.write(zos);

zos.closeEntry(); // getting error at this line
}

错误:

SEVERE: Servlet.service() for servlet [MyApp-server] in context with path [/myapp-server] threw exception
java.io.IOException: Stream closed
at java.util.zip.ZipOutputStream.ensureOpen(ZipOutputStream.java:82)
at java.util.zip.ZipOutputStream.closeEntry(ZipOutputStream.java:231)

方法 2:

ByteArrayOutputStream bos = new ByteArrayOutputStream();
ZipOutputStream zos = new ZipOutputStream(bos);
ServletOutputStream out = response.getOutputStream();

for(Map.Entry<String, List<Data>> entry : DatasMap.entrySet())
{
String fileName = entry.getKey();
List<Data> excelData = entry.getValue();

// The below code constructs the workbook and returns it
SXSSFWorkbook workBook = getWorkBook(fileName, excelData);
ZipEntry zipEntry = new ZipEntry(fileName );
zos.putNextEntry(zipEntry);
workBook.write(bos);
bos.writeTo(zos)

zos.closeEntry(); // this line works perfectly in this case
}
zos.close();
byte[] bytes = bos.toByteArray();

//setting content-type and zip file name
response.setContentType("application/zip");
response.setHeader("Content-Disposition", "attachment; filename=Templates.zip");
out.write(bytes);
out.flush();

方法 2 工作正常,但是当我尝试在客户端打开 zip 文件时,我收到错误提示 error extracting

enter image description here

我不确定 excel 表 是否已损坏或任何其他服务器端流问题。如果任何人有一些有用的想法/想法,请与我分享。

最佳答案

您的第二次尝试失败,因为您通过将工作簿直接写入底层 ByteArrayOutputStream 来混合压缩内容和解压缩内容。因此生成的 zip 文件搞砸了。

第一次尝试失败,因为 workBook.write 关闭了 ZipOutputStream 并且在您写入第二个条目时出现了 Stream closed 异常。

但是您可以阻止流的关闭。创建一个无法关闭的辅助 OutputStream 类:

public class NonCloseableOutputStream extends java.io.FilterOutputStream {
public NonCloseableOutputStream(OutputStream out) {
super(out);
}

@Override public void close() throws IOException {
flush();
}
}

并将该类的实例传递给工作簿:

// The below code constructs the workbook and returns it
SXSSFWorkbook workBook = getWorkBook(fileName, excelData);
ZipEntry zipEntry = new ZipEntry(fileName );
zos.putNextEntry(zipEntry);
workBook.write(new NonCloseableOutputStream(zos));
zos.closeEntry();

关于java - 在 Servlet 端使用 excel 表生成内存中的 zip 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37674653/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com