我正在使用dataexporter创建数据表的pdf,在我的数据表中,列的标题是集中的,但是相同列的pdf版本对齐到左侧。如何使pdf的列像数据表一样集中。
答案 0 :(得分:2)
我使用该解决方案来自定义PDFExporter,它运行良好,感谢您的关注。以下是我的表现:
我的自定义课程:
public class CustomPDFExporter extends PDFExporter {
@Override
protected void addColumnFacets(DataTable table, PdfPTable pdfTable, ColumnType columnType) {
for(UIColumn col : table.getColumns()) {
if(!col.isRendered()) {
continue;
}
if(col instanceof DynamicColumn) {
((DynamicColumn) col).applyModel();
}
if(col.isExportable()) {
addHeaderValue(pdfTable, col.getFacet(columnType.facet()), FontFactory.getFont(FontFactory.TIMES, "iso-8859-1", Font.DEFAULTSIZE, Font.BOLD));
}
}
}
protected void addHeaderValue(PdfPTable pdfTable, UIComponent component, Font font) {
String value = component == null ? "" : exportValue(FacesContext.getCurrentInstance(), component);
PdfPCell cell = new PdfPCell(new Paragraph(value, font));
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
pdfTable.addCell(cell);
}
}
豆:
public void exportPDF(DataTable table, String filename) throws IOException {
FacesContext context = FacesContext.getCurrentInstance();
Exporter exporter = new CustomPDFExporter();
exporter.export(context, table, filename, false, false, "iso-8859-1", null, null);
context.responseComplete();
}
在我的页面中,我添加了:
<h:commandLink action="#{boxBean.exportPDF(boxTable, 'relatorio_caixas')}" >
<p:graphicImage value="/resources/img/pdf.png"/>
</h:commandLink>
答案 1 :(得分:0)
你的答案已经在stackoverflow上了:changing style on generating pdf with Primefaces dataExporter
另请看这里:http://www.primefaces.org/showcase/ui/exporterProcessor.jsf如何使用Primefaces的exportProcessor。
简而言之,您需要创建自己的处理器来创建自定义PDF