POI版本3.16-beta1
我正在尝试将XWPFTable对象插入到现有的XWPFDocument实例中。
val doc = new XWPFDocument()
val doc2 = new XWPFDocument()
val tb = doc.createTable(3,3)
val tb2 = doc2.createTable(4,4)
val pos = doc.getPosOfTable(tb)
doc.insertTable(pos+1, tb2)
val out = new java.io.FileOutputStream(
new java.io.File("./test/resources/document_output.docx")
)
doc.write(out)
out.close()
但是document_output.docx只有第一个表tb。 tb2未出现在Word文档中。 谁能明白为什么?