使用 java 中的 apache poi 向 Doc 文件中的 Table 单元格输入文本
Enter text to a Table Cell in a Doc file using apache poi in java
输出:
我想填写此 table 的第 2 和第 4 个单元格。
我尝试过的:
//got this from an answer here.
XWPFTable table = doc.getTableArray(0);
XWPFTableRow oldRow = table.getRow(1); //the cell is in the second row
XWPFParagraph paragraph = oldRow.getCell(1).addParagraph();
XWPFParagraph paragraph1 = oldRow.getCell(3).addParagraph();
setRun(paragraph.createRun() , "Times New Roman" , 10, "2b5079" , "I want to enter this!" , true, false); //for 2nd cell
setRun(paragraph1.createRun() , "Times New Roman" , 10, "2b5079" , "I want to enter this too!" , true, false);//for 4th cell
private void setRun (XWPFRun run , String fontFamily , int fontSize , String colorRGB , String text , boolean bold , boolean addBreak) {
run.setFontFamily(fontFamily);
run.setFontSize(fontSize);
run.setColor(colorRGB);
run.setText(text);
run.setBold(bold);
if (addBreak)
run.addBreak();
}
我也尝试了两种或更多类似的方法来完成这个但没有成功。为什么我们不能直接做 cell(1).setText("Hello World")
? (这不起作用)
有什么方法可以做到这一点?
谢谢
我无法确认 XWPFTableCell.setText 不起作用。对我来说,它可以使用当前 apache poi 4.1.2
.
我们来看一个完整的例子:
我的 WordTableExample.docx
看起来像这样:
然后这个代码:
import java.io.FileInputStream;
import java.io.FileOutputStream;
import org.apache.poi.xwpf.usermodel.*;
public class WordFillTableCells {
public static void main(String[] args) throws Exception {
XWPFDocument document = new XWPFDocument(new FileInputStream("./WordTableExample.docx"));
XWPFTable table = document.getTableArray(0);
XWPFTableRow row = table.getRow(1);
XWPFTableCell cell = row.getCell(1);
cell.setText("New content of cell row 2 cell 2.");
cell = row.getCell(3);
cell.setText("New content of cell row 2 cell 4.");
FileOutputStream out = new FileOutputStream("./WordTableExampleNew.docx");
document.write(out);
out.close();
document.close();
}
}
产生这个结果 WordTableExampleNew.docx
:
输出:
我想填写此 table 的第 2 和第 4 个单元格。 我尝试过的:
//got this from an answer here.
XWPFTable table = doc.getTableArray(0);
XWPFTableRow oldRow = table.getRow(1); //the cell is in the second row
XWPFParagraph paragraph = oldRow.getCell(1).addParagraph();
XWPFParagraph paragraph1 = oldRow.getCell(3).addParagraph();
setRun(paragraph.createRun() , "Times New Roman" , 10, "2b5079" , "I want to enter this!" , true, false); //for 2nd cell
setRun(paragraph1.createRun() , "Times New Roman" , 10, "2b5079" , "I want to enter this too!" , true, false);//for 4th cell
private void setRun (XWPFRun run , String fontFamily , int fontSize , String colorRGB , String text , boolean bold , boolean addBreak) {
run.setFontFamily(fontFamily);
run.setFontSize(fontSize);
run.setColor(colorRGB);
run.setText(text);
run.setBold(bold);
if (addBreak)
run.addBreak();
}
我也尝试了两种或更多类似的方法来完成这个但没有成功。为什么我们不能直接做 cell(1).setText("Hello World")
? (这不起作用)
有什么方法可以做到这一点? 谢谢
我无法确认 XWPFTableCell.setText 不起作用。对我来说,它可以使用当前 apache poi 4.1.2
.
我们来看一个完整的例子:
我的 WordTableExample.docx
看起来像这样:
然后这个代码:
import java.io.FileInputStream;
import java.io.FileOutputStream;
import org.apache.poi.xwpf.usermodel.*;
public class WordFillTableCells {
public static void main(String[] args) throws Exception {
XWPFDocument document = new XWPFDocument(new FileInputStream("./WordTableExample.docx"));
XWPFTable table = document.getTableArray(0);
XWPFTableRow row = table.getRow(1);
XWPFTableCell cell = row.getCell(1);
cell.setText("New content of cell row 2 cell 2.");
cell = row.getCell(3);
cell.setText("New content of cell row 2 cell 4.");
FileOutputStream out = new FileOutputStream("./WordTableExampleNew.docx");
document.write(out);
out.close();
document.close();
}
}
产生这个结果 WordTableExampleNew.docx
: