itextpdf添加表格元素,使用iText在PDF表格中添加一行

What I'm getting in this code is a table with 8 columns and 3 rows.

What should I do to get just 2 rows? And the 1st column in the 3 rows are empty, but the remaining cells are filled with "hi".

Code:

PdfPTable table = new PdfPTable(8);

PdfPCell cell;

cell = new PdfPCell();

cell.setRowspan(2);

table.addCell(cell);

for(int aw=0;aw<8;aw++){

table.addCell("hi");

}

解决方案

Try this:

PdfPTable table = new PdfPTable(8);

PdfPCell cell;

for(int aw=0;aw<8;aw++)

{

cell = new PdfPCell(new Paragraph("hi"));

table.addCell(cell );

}

EDIT:

// Step 1

Document document = new Document();

// step 2

PdfWriter.getInstance(document, new FileOutputStream(filename));

// step 3

document.open();

// step 4

PdfPTable table = new PdfPTable(8);

for(int aw=0;aw<16 ; aw++){

table.addCell("hi");

}

// Step 5

document.add(table);

// step 6

document.close();

See SimpleTable for the full sample code and the resulting PDF:

kypl5.png

As you can see in the screen shot, the table has 8 columns and 2 rows (as expected).

Reading the original question, I see that the first column has a cell with colspan 2. It's only a small change to take this into account:

PdfPTable table = new PdfPTable(8);

PdfPCell cell = new PdfPCell(new Phrase("hi"));

cell.setRowspan(2);

table.addCell(cell);

for(int aw = 0; aw < 14; aw++){

table.addCell("hi");

}

Now the result looks like this:

def3a8a5ba6d1ba6475cee8056eee91c.png

Again 8 columns and two rows, but now the cell in the first column spans two rows.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值