已插入POI XWPFTable但未在Word文档中显示

时间:2017-03-08 08:25:37

标签: scala ms-word apache-poi docx

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文档中。 谁能明白为什么?

0 个答案:

没有答案