java 操作 word 表格和样式,java Apache POI Word现有表插入具有单元格样式和格式的行...

这篇博客介绍了如何使用Apache POI库在Word文档中复制现有表格的一行,并将复制的行插入到指定位置,同时保持新行的样式与原表格一致。示例代码展示了如何创建新行、设置单元格内容以及在插入新行前更新内容的必要步骤。
摘要由CSDN通过智能技术生成

I'am a beginner in Apache POI and want to extend an existing table in the word template file with some rows.

If I use that code below, the table will be extended with row bit the new row's cells created normal style.

My goal is the cells have the same table cells style etc (font, with, height...)

XWPFDocument doc = new XWPFDocument(openFile(fileName));

XWPFTable tbl = doc.getTableArray(tableIndex);

XWPFTableRow lastRow = tbl.getRows().get(tbl.getNumberOfRows() - 1);

cellCounter = lastRow.getTableICells().size();

XWPFTableRow newRow = tbl.createRow();

for (int i = 0; i < data.size() && cellCounter <= data.size(); i++) {

String text = data.get(i);

XWPFTableCell cell = newRow.getCell(i);

if (cell != null) {

cell.setText(text);

}

}

Thanks for your answer.

R.

解决方案

The following code gets an exact copy of the second row in first table contained in document. Then it changes the text contents of the cells in this row. And then inserts this copied row between row 2 and 3 of this table.

The changing the content must be done before table.addRow since the row must be complete before inserting it in List tableRows and adding it to the TrArray of the CTTbl ctTbl. Later changings will not be written into the XML. I've not really got the reason why this is the case.

Then the code gets a copy of the last row and adds this copy at the end of the table. Here also the changing the content must be done before table.addRow.

import java.io.*;

import org.apache.poi.xwpf.usermodel.*;

import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTRow;

public class WordInsertTableRow {

public static void main(String[] args) throws Exception {

XWPFDocument doc = new XWPFDocument(new FileInputStream("source.docx"));

XWPFTable table = doc.getTableArray(0);

//insert new row, which is a copy of row 2, as new row 3:

XWPFTableRow oldRow = table.getRow(1);

CTRow ctrow = CTRow.Factory.parse(oldRow.getCtRow().newInputStream());

XWPFTableRow newRow = new XWPFTableRow(ctrow, table);

int i = 1;

for (XWPFTableCell cell : newRow.getTableCells()) {

for (XWPFParagraph paragraph : cell.getParagraphs()) {

for (XWPFRun run : paragraph.getRuns()) {

run.setText("New row 3 cell " + i++, 0);

}

}

}

table.addRow(newRow, 2);

//insert new last row, which is a copy previous last row:

XWPFTableRow lastRow = table.getRows().get(table.getNumberOfRows() - 1);

ctrow = CTRow.Factory.parse(lastRow.getCtRow().newInputStream());

newRow = new XWPFTableRow(ctrow, table);

i = 1;

for (XWPFTableCell cell : newRow.getTableCells()) {

for (XWPFParagraph paragraph : cell.getParagraphs()) {

for (XWPFRun run : paragraph.getRuns()) {

run.setText("New last row cell " + i++, 0);

}

}

}

table.addRow(newRow);

doc.write(new FileOutputStream("result.docx"));

doc.close();

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值