我想加载模板word文档并向其添加内容并将其另存为新文档。这是我发现的:
private static WordprocessingMLPackage getTemplate(String name) throws Docx4JException, FileNotFoundException {
WordprocessingMLPackage template = WordprocessingMLPackage.load(new java.io.File(name));
return template;
}
private static List<Object> getAllElementFromObject(Object obj, Class<?> toSearch) {
List<Object> result = new ArrayList<Object>();
if (obj instanceof JAXBElement) obj = ((JAXBElement<?>) obj).getValue();
if (obj.getClass().equals(toSearch))
result.add(obj);
else if (obj instanceof ContentAccessor) {
List<?> children = ((ContentAccessor) obj).getContent();
for (Object child : children) {
result.addAll(getAllElementFromObject(child, toSearch));
}
}
return result;
}
private static void replacePlaceholder(WordprocessingMLPackage template, String name, String placeholder) {
List<Object> texts = getAllElementFromObject(template.getMainDocumentPart(), Text.class);
for (Object text : texts) {
Text textElement = (Text) text;
if (textElement.getValue().equals(placeholder)) {
textElement.setValue(name);
}
}
}
private void writeDocxToStream(WordprocessingMLPackage template, String target) throws IOException, Docx4JException {
File f = new File(target);
template.save(f);
}
我在驱动器D中创建了i sample.docx文件,然后我调用了main方法:
public static void main(String[] args) throws Docx4JException, Exception {
WordprocessingMLPackage template = getTemplate("D:\\sample.docx");
replacePlaceholder (template,"fayza", "nom");
}
不幸的是这不起作用,它猜模板不能加载,我试过但仍然无法正常工作,请帮助
答案 0 :(得分:0)
你没有调用writeDocxToStream?
此外,您的代码包含:
if (textElement.getValue().equals(placeholder))
你可能想要包含,而不是等于。它总是值得解压缩您的docx并查看XML以更好地理解问题。
在任何情况下,这都是过于复杂和低效的,因为您创建了一个新的且可能很大的List。
请参阅docx4j示例中的VariableReplace,或使用内容控制数据绑定。