gpt4 book ai didi

java - pdfptable 中的新行

转载 作者:行者123 更新时间:2023-11-30 06:36:24 25 4
gpt4 key购买 nike

我正在使用 iText 库以 pdf 文件中的表格格式打印某些数据。我有 11 列,可以有多行。在为每一列的标题创建标题后,如何在 pdfptable 中创建一个新行,以便我可以在单独的行上打印真实数据。

最佳答案

在 PdfPTable 的构造函数中,您指定一行中的列数。

PdfPTable table = new PdfPTable(4) // 4 Columns
PdfPCell cell;
cell = new PdfPCell( new Phrase("Cell with colspan of 4") ) ;
cell. setColspan(4) ; // an entire row

anotherCell = new PdfPCell( new Phrase("Cell with colspan of 4") );
anotherCell.setColspan(4); // a second row

如您所见,当您到达当前行的 colspan 时,会创建一个新行。

关于java - pdfptable 中的新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4891578/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com