我正在尝试创建包含多个列的word文档。这样做(而不是使用表格)的原因是数据将跨越多个页面,并且只有列可以填充整个页面,然后再添加到新页面。
可以用Apache POI完成吗?谢谢!
答案 0 :(得分:0)
如何使用以前创建的多列空文档?像这样:
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")));