要使用docx4j修改文档内容,可以按照以下步骤进行:
WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.load(new File("input.docx"));
MainDocumentPart mainDocumentPart = wordMLPackage.getMainDocumentPart();
org.docx4j.wml.Document document = mainDocumentPart.getJaxbElement();
// 替换文本
TextFinder finder = new TextFinder("old text", "new text");
finder.replace(document);
// 插入新内容
P paragraph = factory.createP();
Text text = factory.createText();
text.setValue("Inserted text");
paragraph.getContent().add(text);
document.getBody().getContent().add(paragraph);
wordMLPackage.save(new File("output.docx"));
通过以上步骤,您可以使用docx4j修改文档内容。请注意,docx4j提供了许多其他功能,如添加表格、插入图片等,您可以根据具体需求选择使用相应的功能。