我正在尝试创建一个包含多列的 word 文档。这样做(而不是使用表格)的原因是数据将跨越多个页面,并且只有在添加到新页面之前我才能填充整个页面的列。
可以用 Apache POI 完成吗?谢谢!
我正在尝试创建一个包含多列的 word 文档。这样做(而不是使用表格)的原因是数据将跨越多个页面,并且只有在添加到新页面之前我才能填充整个页面的列。
可以用 Apache POI 完成吗?谢谢!
如何使用以前创建的具有多列的空文档?像这样:
XWPFDocument document = new XWPFDocument(PoiTest.class.getResourceAsStream("twocolumn.docx"));
XWPFParagraph tmpParagraph = document.getParagraphs().get(0);
for (int i = 0; i < 100; i++) {
XWPFRun tmpRun = tmpParagraph.createRun();
tmpRun.setText("LALALALAALALAAAA");
tmpRun.setFontSize(18);
}
document.write(new FileOutputStream(new File("C:\\temp\\poi.docx")));