我正在开发一个项目,我正在尝试创建一个自动报告生成器。我需要查明几个特定的段落,消除已经存在的表并插入一个新表。
到目前为止,一切都很完美。我甚至设法在我想要的地方插入一个示例文本,但是......尽管我做了什么,所有的表都放在文档的末尾。
public class InsertText {
public static void main(String[] args) throws FileNotFoundException, IOException,
InvalidFormatException {
try {
FileInputStream fis = new FileInputStream("c:\\Work\\current\\***.docx");
XWPFDocument document = new XWPFDocument(OPCPackage.open(fis));
fis.close();
System.out.println(document.getDocument().getBody().getPArray().length);
List<IBodyElement> elements = document.getBodyElements();
for (int n = 0; n < elements.size(); n++) {
IBodyElement element = elements.get(n);
if (element instanceof XWPFParagraph) {
XWPFParagraph p1 = (XWPFParagraph) element;
List<XWPFRun> runList = p1.getRuns();
StringBuilder sb = new StringBuilder();
for (XWPFRun run : runList)
sb.append(run.getText(0));
if (sb.toString().contains("????")) {
n++;
element = elements.get(n);
if (element instanceof XWPFTable) {
XWPFTable t = (XWPFTable) element;
XmlCursor cursor = t.getCTTbl().newCursor();
document.removeBodyElement(n);
XWPFParagraph p = document.insertNewParagraph(cursor);
XWPFRun run = p.createRun();
run.setText("GOAL!!!");
XWPFTable t2 = document.createTable(3,4);
XWPFTableCell cell = t2.getRow(0).getCell(0);
document.insertTable(n, t2);
cell.setText("GOAL!!!");
t2 = p.getBody().insertNewTbl(cursor);
}
}
}
}
FileOutputStream outStream = new FileOutputStream("C:/Work/Current/**.docx");
document.write(outStream);
outStream.close();
} catch (Exception e) {
e.printStackTrace(System.out);
}
}
}
答案 0 :(得分:5)
//first row
XWPFTableRow rowOfOriginalTable = theOriginalTable.getRow(0);
//second cell of the first row
XWPFTableCell cellOfOriginalTable = rowOfOriginalTable.getCell(1);
//new paragraph in that cell
XWPFParagraph p = cellOfOriginalTable.addParagraph();
//get the cursor of the new paragraph
XmlCursor cursor = p.getCTP().newCursor();
//add the nested Table
XWPFTable nestedTable = p.getBody().insertNewTbl(cursor);
//add the first row to the nested table
XWPFTableRow rowOfNestedTable = nestedTable.createRow();
//add a cell to the first row
XWPFTableCell cellOfNestedTable = rowOfNestedTable.createCell();
//add a value
cellOfNestedTable.setText("Cell 0,0");
//add another cell
cellOfNestedTable = rowOfNestedTable.createCell();
cellOfNestedTable.setText("Cell 0,1");
//add another cell and rows
rowOfNestedTable = nestedTable.createRow();
cellOfNestedTable = rowOfNestedTable.getCell(0);
cellOfNestedTable.setText("Cell 1,0");
cellOfNestedTable = rowOfNestedTable.getCell(1);
cellOfNestedTable.setText("Cell 1,1");
cellOfOriginalTable.addParagraph();
答案 1 :(得分:1)
事实证明,你不能将一个光标用于多个目的,所以我需要做的就是为我未来的表创建一个新的光标。
run.setText("GOAL!!!");
cursor = p.getCTP().newCursor();//this is the key!
XWPFTable t2 = document.insertNewTbl(cursor);
XWPFTableCell cell = t2.getRow(0).getCell(0);
cell.setText("GOAL!!!");
答案 2 :(得分:0)
这将在给定位置插入一个表:
CTTbl inserted = doc.getDocument().getBody().insertNewTbl(position);
XWPFTable newTable = new XWPFTable(inserted, doc);
其中doc
是XWPFDocument对象,position
是您在其他表中的位置。