标签: java apache-poi xwpf
我正在寻找使用XWPFDocument删除我的世界文档的第一页。
XWPFDocument document = getTemplateFromFile('file.docx');
实际上在document.getBodyElements()我有40 XWPFParagraph,但没有人告诉我何时添加了分页符。
document.getBodyElements()
实现这一目标的最佳方法是什么?最好的方法是使用document.getPages().removePage(pPosition); ^^
document.getPages().removePage(pPosition);