表格单元格和字符串在同一行itext中

时间:2013-06-24 21:27:25

标签: java itext

如何在同一行中的某个字符串之前创建带有单元格的pdf?我试试

 PdfPTable tab=new PdfPTable(1);
 tab.addCell("T");
 tab.setWidthPercentage(3);
 tab.setHorizontalAlignment(Element.ALIGN_LEFT);
 document.add(new Paragraph(String.format("Something",tab)));
 document.add(tab);

但它不能正常工作。

1 个答案:

答案 0 :(得分:0)

尝试类似的东西:

PdfPTable tab=new PdfPTable(2);
tab.addCell("T");
tab.addCell("Something");
tab.setWidthPercentage(30);

<强>更新

 PdfPTable tab=new PdfPTable(2);
 PdfPTable tabLeft=new PdfPTable(1);
 tabLeft.addCell("T");
 tab.addCell(tabLeft);
 tab.addCell("Something");