gpt4 book ai didi

java - 将 XML 文件与其他 PDF 文件一起附加在 zip 文件中

转载 作者:行者123 更新时间:2023-12-01 14:41:40 25 4
gpt4 key购买 nike

我有一个 xml 文档的输出流。我将所有 PDF 文件附加到一个 zip 文件中。附加完所有 PDF 文件后,我想附加 xml 文档。但我得到的只是空的 xml 文件。

这就是我正在做的事情

byte b[] = new byte[10240];
ZipOutputStream zout = new ZipOutputStream(getOutputStream("ExampleForms.zip", attach));
for(int i = 0; i < pdfs.length; i++){
File f = File.createTempFile(pdfs[i].NAME, ".pdf");
FileOutputStream fo = new FileOutputStream(f);
pdfs[i].render(fo);
fo.close();
InputStream in = new FileInputStream(f);
ZipEntry e = new ZipEntry(pdfs[i].NAME + ".pdf");
zout.putNextEntry(e);
int len=0;
while((len=in.read(b)) != -1) {
zout.write(b,0,len);
}
in.close();
zout.closeEntry();
f.delete();
}
/* out is my outputstream in which i have written xml document */
File f = File.createTempFile("SampleXmlFile.xml");
FileOutputStream fo = new FileOutputStream(f);
fo.write(out.toString().getBytes());
fo.close();
InputStream is = new FileInputStream(f);
ZipEntry e = new ZipEntry("MyXmlFile",".xml");
zout.putNextEntry(e);
int lent = 0;
while((lent = is.read(bt)) != -1){
zout.write(bt,0,lent);
}
is.close();
zout.closeEntry();
zout.close();

最佳答案

1) 很可能 out 为空

2) 为什么要使用临时文件?使用

 zout.write(out.toString().getBytes());

关于java - 将 XML 文件与其他 PDF 文件一起附加在 zip 文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15893013/

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