需要库建议以在android中创建docx文件

时间:2019-12-19 18:51:52

标签: java android apache-poi

我面临使用poi库在android应用程序中创建 docx 文件的问题。有人可以帮我吗?

XWPFDocument document = new XWPFDocument();
FileOutputStream out = new FileOutputStream(new File("..........."));

XWPFParagraph paragraph = document.createParagraph();
XWPFRun run = paragraph.createRun();
run.setText("This is apache pi word document");
document.write(out);
out.close();

在使用poi 4.1.1,poi-ooxml,poi-ooxml模式和较低版本时,此代码中也存在错误。

0 个答案:

没有答案