如何用Java替换Powerpoint文件中的文本

时间:2015-03-11 01:09:06

标签: java powerpoint docx4j

我有一个要求,我需要在运行时替换Powerpoint文件中的某些文本。 (Powerpoint文件用作包含一些占位符/转到框的模板,例如{{USER_NAME}}) 我尝试过使用POI,但没有运气。 我参考了论坛上的其他链接,并开始使用' docx4j'但我不能超越一点,文件不是很清楚(至少对我而言)。 这是我到目前为止所做的: 将PPTX加载到' PresentationMLPackage' 得到了“MainPresentationPart'和幻灯片(使用mainPresentationPart.getSlide(n);)

但我不确定从这里开始的下一步(或者如果这是正确的方法)。

任何建议都将不胜感激。

非常感谢, -Vini

1 个答案:

答案 0 :(得分:0)

SlidePart extends JaxbPmlPart<Sld>
JaxbPmlPart<E> extends JaxbXmlPartXPathAware<E>
JaxbXmlPartXPathAware<E> extends JaxbXmlPart<E>

JaxbXmlPart包含:

/**
 * unmarshallFromTemplate.  Where jaxbElement has not been
 * unmarshalled yet, this is more efficient (3 times
 * faster, in some testing) than calling
 * XmlUtils.marshaltoString directly, since it avoids
 * some JAXB processing.  
 * 
 * @param mappings
 * @throws JAXBException
 * @throws Docx4JException
 * 
 * @since 3.0.0
 */
public void variableReplace(java.util.HashMap<String, String> mappings) throws JAXBException, Docx4JException {

    // Get the contents as a string
    String wmlTemplateString = null;
    if (jaxbElement==null) {

        PartStore partStore = this.getPackage().getSourcePartStore();
        String name = this.getPartName().getName();
        InputStream is = partStore.loadPart( 
                name.substring(1));
        if (is==null) {
            log.warn(name + " missing from part store");
            throw new Docx4JException(name + " missing from part store");
        } else {
            log.info("Lazily unmarshalling " + name);

            // This seems to be about 5% faster than the Scanner approach
            try {
                wmlTemplateString = IOUtils.toString(is, "UTF-8");
            } catch (IOException e) {
                throw new Docx4JException(e.getMessage(), e);
            }
        }

    } else {

        wmlTemplateString = XmlUtils.marshaltoString(jaxbElement, true, false, jc);

    }

    // Do the replacement
    jaxbElement = (E)XmlUtils.unwrap(
                        XmlUtils.unmarshallFromTemplate(wmlTemplateString, mappings, jc));

}

因此,一旦有了幻灯片部分,就可以在其上调用variableReplace。你需要你的变量采用XmlUtils.unmarshallFromTemplate预期的格式