在web application中利用 iText 实现 PDF 报表下载
------------------------------?
table = new PdfPTable(2);
? ? ? ? ? ? ? ? table.setTotalWidth(pageTableWidth);
? ? ? ? ? ? ? ? table.setWidthPercentage(100);
? ? ? ? ? ? ? ? float[] widths = {5f, 95f};
? ? ? ? ? ? ? ? table.setWidths(widths);
? ? ? ? ? ? ? ? dCell = table.getDefaultCell();
? ? ? ? ? ? ? ? dCell.setBorder(Rectangle.NO_BORDER);
? ? ? ? ? ? ? ? dCell.setBorderWidth(0);
? ? ? ? ? ? ? ? dCell.setPadding(1);
?
? ? ? ? ? ? ? ? PdfPCell desc = new PdfPCell(new Phrase(""));
? ? ? ? ? ? ? ? desc.setBorder(0);
? ? ? ? ? ? ? ? desc.setColspan(2);
--------------------------------------------------
?