我已经用Apache POI创建了word文档(XWPFDocument),并希望 将其转换为pdf。
这是我的代码:
String wordFilename = "report.docx";
ByteArrayOutputStream output = new ByteArrayOutputStream();
XWPFDocument document = new XWPFDocument();
//...document content code here
document.write(output);
document.close();
我已经看到了其他一些实现,但是它们都使用FileInputStream并从文件中获取文档。就我而言,我有一个ByteArrayOutputStream。
请帮助。预先感谢。