我知道网上已有一些信息,但我不知道。
我的情况: 我有10页的PDF,所有页面都包含相同的表格。 当我使用我的代码时,只填写第一页而其他页面仍为空白。如果我在Adobe Livecycle中检查了字段名称,则它们都是不同页面的相同内容。
在我的情况下,我应该怎么做才能填写所有页面,而不仅仅是第一个页面?
我的代码:
//Pagecount == 10
//I was trying to loop through the pages, no success
for(int i=1; i<=pageCount; i++){
form.setField("RecallID", wdContext.currentGetRecallDetailsResponseOutputElement().getRecallid());
form.setField("Afdeling", afdeling);
String type = wdContext.currentGetRecallDetailsResponseOutputElement().getType();
if(type.equals("D"))form.setField("Type", "DESTRUCTION");
else if(type.equals("B"))form.setField("Type", "BLOCK");
form.setField("Description", wdContext.currentGetRecallDetailsResponseOutputElement().getDescription());
form.setField("CreationDate",sdf.format(wdContext.currentGetRecallDetailsResponseOutputElement().getCreationdate()));
form.setField("Enddate", sdf.format(wdContext.currentGetRecallDetailsResponseOutputElement().getEnddate()));
form.setField("Acties", wdContext.currentGetRecallDetailsResponseOutputElement().getAction_Nl());
form.setField("Actions", wdContext.currentGetRecallDetailsResponseOutputElement().getAction_Fr());
form.setField("Probleem", wdContext.currentGetRecallDetailsResponseOutputElement().getProblem_Nl());
form.setField("Probleme", wdContext.currentGetRecallDetailsResponseOutputElement().getProblem_Fr());
}
stamper.setFormFlattening(true);
stamper.close();
答案 0 :(得分:0)
在循环内创建form
的对象。
同时检查pageCount
是否为1。
答案 1 :(得分:0)
请查看FillFlattenMerge2
示例。此视频教程中解释了此示例:https://www.youtube.com/watch?v=6YwDME0Fl1c(如果您按照教程进行操作,您将理解为什么FillFlattenMerge1
是如何 NOT 的示例。)
Document document = new Document();
PdfCopy copy = new PdfSmartCopy(document, new FileOutputStream(dest));
document.open();
ByteArrayOutputStream baos;
PdfReader reader;
PdfStamper stamper;
AcroFields fields;
for (int i = 0; i < data.length; i++) {
// create a PDF in memory
baos = new ByteArrayOutputStream();
reader = new PdfReader(SRC);
stamper = new PdfStamper(reader, baos);
fields = stamper.getAcroFields();
tokenizer = new StringTokenizer(line, ";");
fields.setField("name", data[i].getName());
...
stamper.setFormFlattening(true);
stamper.close();
reader.close();
// add the PDF to PdfCopy
reader = new PdfReader(baos.toByteArray());
copy.addDocument(reader);
reader.close();
}
br.close();
document.close();
您可以在此处查看示例:http://demo.itextsupport.com/itextsamples/(点击“填充,展平和合并”旁边的“如何正确操作”链接。)