如何使用docx4j插入元素

时间:2014-03-27 20:00:26

标签: java docx docx4j

我有一个.docx文档,顶部有一些表格。这些包含需要替换的文本占位符,工作正常。但是,需要重复其中一个表并填充不同的值。我可以深度复制表并将其添加到文档的末尾,但我不知道如何将其插入适当的位置。我尝试在模板表的索引处添加副本,但这提供了一种未知的图形格式" LibreOffice中的错误,即使我删除原始文件:

template.getMainDocumentPart().getContent().add(index, copy);
template.getMainDocumentPart().getContent().remove(table);

有什么想法吗?

修改:

我在Windows框中创建了一个示例项目,但现在我得到一个IndexOutOfBoundsException,因为该表不在主文档部分内容列表中(它包含在JAXBElement中)。请参阅下面的代码,这将获取一个包含三个单独表格的文档,其中第一个表格的文本为"第一个"在其中,等等。

package test;

import org.docx4j.XmlUtils;
import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
import org.docx4j.wml.ContentAccessor;
import org.docx4j.wml.Tbl;
import org.docx4j.wml.Text;

import javax.xml.bind.JAXBElement;
import java.io.File;
import java.util.ArrayList;
import java.util.List;

public class Test {

    private WordprocessingMLPackage template;

    public void getTemplate(String name) {
        try {
            template = WordprocessingMLPackage.load(Thread.currentThread().getContextClassLoader().getResourceAsStream(name));
        } catch (Exception e) {
        }
    }

    private 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;
    }

    public void duplicate() {
        List<Object> tables = getAllElementFromObject(template.getMainDocumentPart(), Tbl.class);
        for (Object table : tables) {
            List list = template.getMainDocumentPart().getContent();
        // Workaround for table being wrapped in JAXBElement
        // This simple code assumes table is present and top level
        int index = 0;
        for (Object o : list) {
            if (XmlUtils.unwrap(o)== table) {
                break;
            }
            index++;
        }
        List<Object> texts = getAllElementFromObject(table, Text.class);
        for (Object t : texts) {
            Text text = (Text) t;
            if (text.getValue().contains("second")) {
                Tbl copy = (Tbl) XmlUtils.deepCopy(table);
                template.getMainDocumentPart().getContent().add(index, copy);
                System.out.println(template.getMainDocumentPart().getXML());
                return;                    
            }
        }           }
    }

    public void save() {
        try {
            template.save(new File("out.docx"));
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) {
        Test test = new Test();
        test.getTemplate("test.docx");
        test.duplicate();
        test.save();
    }

}

我不确定如何最好地解决这个问题。

1 个答案:

答案 0 :(得分:0)

听起来桌上可能有图片吗?你是从另一个docx复制它吗?

如果您只克隆了当前主文档部分的内容,并根据您的问题插入,那就没问题,也不会导致您报告的错误。