我正在尝试使用java中的itext pdf库将数据库中的记录导出为pdf。但是我在pdf文件中对齐pdf表时遇到以下问题..
1.表格没有显示在完整的pdf页面中。它是从pdf页面左侧和右侧留下空格。
2.每页只显示一半页面的值.Means pdf表显示在一半的pdf页面中..
这是我的代码..
Document document = new Document();
PdfWriter.getInstance(document, fos);
PdfPTable table = new PdfPTable(10);
table.setWidthPercentage(100);
table.setSpacingBefore(0f);
table.setSpacingAfter(0f);
PdfPCell cell = new PdfPCell(new Paragraph("DateRange"));
cell.setColspan(10);
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setPadding(5.0f);
cell.setBackgroundColor(new BaseColor(140, 221, 8));
table.addCell(cell);
table.addCell("Calldate");
table.addCell("Calltime");
table.addCell("Source");
table.addCell("DialedNo");
table.addCell("Extension");
table.addCell("Trunk");
table.addCell("Duration");
table.addCell("Calltype");
table.addCell("Callcost");
table.addCell("Site");
while (rs.next()) {
table.addCell(rs.getString("date"));
table.addCell(rs.getString("time"));
table.addCell(rs.getString("source"));
table.addCell(rs.getString("destination"));
table.addCell(rs.getString("extension"));
table.addCell(rs.getString("trunk"));
table.addCell(rs.getString("dur"));
table.addCell(rs.getString("toc"));
table.addCell(rs.getString("callcost"));
table.addCell(rs.getString("Site"));
}
table.setSpacingBefore(5.0f); // Space Before table starts, like margin-top in CSS
table.setSpacingAfter(5.0f); // Space After table starts, like margin-Bottom in CSS
document.open();//PDF document opened........
document.add(Chunk.NEWLINE); //Something like in HTML :-)
document.add(new Paragraph("TechsoftTechnologies.com"));
document.add(new Paragraph("Document Generated On - " + new Date().toString()));
document.add(table);
document.add(Chunk.NEWLINE); //Something like in HTML :-)
document.newPage(); //Opened new page
//In the new page we are going to add list
document.close();
fos.close();
答案 0 :(得分:7)
在我明白你想要抑制边距之前,我必须多次阅读你的问题。我复制/粘贴(并改编)你的例子,我认为我无法重现你的问题,因为我(以及许多其他开发人员)习惯了页面有边距这一事实。
无论如何,这是我的示例版本:FullPageTable,它会创建以下PDF:full_page_table.pdf
我做了一些小的改动,例如:将''Paragraph'作为PdfPCell
的参数传递是没有意义的,因为Paragraph
将被视为{Phrase
1}},但我认为你要寻找的是:
Document document = new Document(PageSize.A4, 0, 0, 0, 0);
零定义边距的宽度,如果我正确理解你的问题,你想要抑制这些边距。
至于你的指控每个页面只显示半页的值.Means pdf表显示在pdf页面的一半,我认为你自己引入了{{{ 1}}否则你的指控没有意义; - )