我正在使用iTextPdf为pdf构建一个表格。每页将有9到15列,直到运行时才知道确切的数字。iTextPDF非常适合在页面宽度上创建大小相等的列。但是我不知道如何创建不同宽度的列。
我不能使用固定的列宽,因为我想跨越整个页面宽度。因此,当写入9列时,每列必然比写入12或15列时宽。固定的是这些列宽度之间的关系。举个例子,我知道A列永远是B列宽度的75%,B列永远是C列宽度的50%。我可以为每一列确定这一点。
有人对如何划分页面以正确调整这些列的大小有任何想法吗?这是我正在使用的一些代码,用于创建相同大小的列。我需要其他东西接近尾声
cell. set Colspan(1);
更改列的宽度,但不要更改为固定值。谢谢!
public static void newPDF() throws DocumentException, IOException {
PdfWriter writer;
Document document;
int cols = 9; //can be either 9, 12, or 15
document = new Document();
writer = PdfWriter.getInstance(document, new FileOutputStream("test.pdf"));
document.open();
document.add(createTable(cols));
document.close();
}
public static PdfPTable createTable(int cols) {
PdfPTable table = new PdfPTable(cols);
PdfPCell cell;
for (int i = 0; i < cols; i++) {
ph = selector.process("some text");
cell = new PdfPCell(ph);
cell.setColspan(1); //repeated 9, 12, or 15 times
table.addCell(cell);
}
return table;
}
我找到了答案。
float[] columnWidths = new float[] {10f, 20f, 30f, 10f};
table.setWidths(columnWidths);
此代码按相对于括号内的值的比例分配列的水平空间(例如,列A是列b大小的1/2和列C大小的1/3)。
这里有一个很好的例子:http://www.kodejava.org/examples/833.html
不管怎样谢谢!