怎样利用iText把生成出的PDF变成压缩包

 我来答
mengfei1001
2012-07-12 · 超过15用户采纳过TA的回答
知道答主
回答量:45
采纳率:100%
帮助的人:34.6万
展开全部
官方demo
public class HelloZip {

/** Path to the resulting PDF file. */
public static final String RESULT
= "results/part1/chapter01/hello.zip";

/**
* Creates a zip file with five PDF documents:
* hello1.pdf to hello5.pdf
* @param args no arguments needed
*/
public static void main(String[] args)
throws DocumentException, IOException {
// creating a zip file with different PDF documents
ZipOutputStream zip =
new ZipOutputStream(new FileOutputStream(RESULT));
for (int i = 1; i <= 1; i++) {
ZipEntry entry = new ZipEntry("hello_" + i + ".pdf");
zip.putNextEntry(entry);

// step 1
Document document = new Document();
// step 2
PdfWriter writer = PdfWriter.getInstance(document, zip);
writer.setCloseStream(false);
// step 3
document.open();
// step 4
document.add(new Paragraph("Hello " + i));
// step 5
document.close();

zip.closeEntry();
}
zip.close();
}
}
353695241
2012-07-11 · TA获得超过349个赞
知道小有建树答主
回答量:839
采纳率:0%
帮助的人:183万
展开全部
自己压贝
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式