我正在使用iText 7生成带有桌子的PDF。
我想定义单元格的大小。
我想减少带有数字的列(07,08 ......)并增加其他列。
以下是我创建表格的方法:
int nbColumns = 7 + planning.size() *4;
Table table = new Table(nbColumns);
table.setWidthPercent(100);
table.addCell(createCell(""));
table.addCell(createCell("Col1"));
table.addCell(createCell("Col2"));
DateFormat hourFormat = new SimpleDateFormat("HH", Locale.FRENCH);
for(Date hourDate : planning){
table.addCell(new Cell(1,4).setTextAlignment(TextAlignment.CENTER).add(hourFormat.format(hourDate)).setFont(regular).setFontSize(10));
}
table.addCell(createCell("Long"));
table.addCell(createCell("A"));
table.addCell(createCell("B"));
table.addCell(createCell(""));
我尝试使用Cell的setWidth
方法,但它没有做任何事情。
我尝试在创建表时定义列的宽度:
float[] colWidths = {1,1,1,1,1,1,1,1,2,1,1,1,1,1,5,1,1,2,2,2};
Table table = new Table(colWidths);
但是它会使标题单元格产生一个多行的混乱。
你能帮帮我吗?
答案 0 :(得分:3)
如果float[] colWidths = {1,1,1,1,1,1,1,1,2,1,1,1,1,1,5,1,1,2,2,2};
是一个包含每列所需相对宽度的数组,请将它们转换为UnitValue
百分比数组,然后使用该数组构建表:
Table table = new Table(UnitValue.createPercentArray(colWidths));
如果希望表的绝对宽度高于列传递的宽度,请使用Table#setFixedLayout()
。
可能有助于运行和/或试验下面的代码片段以查看每种不同类型的声明的效果:
public void createPdf(String dest) throws IOException, FileNotFoundException{
PdfWriter writer = new PdfWriter(dest);
PdfDocument pdfDoc = new PdfDocument(writer);
Document doc = new Document(pdfDoc);
float tableWidth = 100f;
//Using defaults
doc.add(new Paragraph("default/auto-layout"));
doc.add(new Paragraph("Using a float[]"));
float[] colWidths = {1,2,3,4};
Table table = new Table(colWidths);
table.setWidthPercent(tableWidth);
fillTable(table);
doc.add(table);
doc.add(new Paragraph("Using a UnitValue[] point array"));
colWidths=new float[]{20f,40f,80f,160f};
table = new Table(UnitValue.createPointArray(colWidths));
table.setWidth(tableWidth);
fillTable(table);
doc.add(table);
doc.add(new Paragraph("Using a UnitValue[] percent array"));
colWidths=new float[]{1,2,3,4};
table = new Table(UnitValue.createPercentArray(colWidths));
table.setWidthPercent(tableWidth);
fillTable(table);
doc.add(table);
doc.add(new AreaBreak(AreaBreakType.NEXT_PAGE));
//Using fixedLayout
doc.add(new Paragraph("Using fixedLayout"));
doc.add(new Paragraph("Using a float[]"));
colWidths =new float[]{1,2,3,4};
table = new Table(colWidths);
table.setFixedLayout();
table.setWidthPercent(tableWidth);
fillTable(table);
doc.add(table);
doc.add(new Paragraph("Using a UnitValue[] point array"));
colWidths=new float[]{20f,40f,80f,160f};
table = new Table(UnitValue.createPointArray(colWidths));
table.setWidthPercent(tableWidth);
table.setFixedLayout();
fillTable(table);
doc.add(table);
doc.add(new Paragraph("Using a UnitValue[] percent array"));
colWidths=new float[]{1,2,3,4};
table = new Table(UnitValue.createPercentArray(colWidths));
table.setWidthPercent(tableWidth);
table.setFixedLayout();
fillTable(table);
doc.add(table);
doc.close();
}
public void fillTable(Table table){
table.addCell("Water");
table.addCell("Fire");
table.addCell("Heaven");
table.addCell("As I'm grounded here on");
table.addCell("It's waving oceans are calling");
table.addCell("is burning me deep inside");
table.addCell("can wait for me");
table.addCell("Earth");
}