生成目录时,我无法更新页码。
它将异常显示为“遇到损坏的书签;未配置为修复”。
我用下面的代码更新目录。

TocGenerator tocGenerator =新的TocGenerator(wordMLPackage);

tocGenerator.generateToc(0,“ TOC \ o \” 1-3 \“ \ h \ z \ u”,false);

tocGenerator.updateToc(false);

最佳答案

消息来自这里:

/**
 * Calculate page numbers
 *
 * @return
 * @throws TocException
 */
private Map<String, Integer> getPageNumbersMap() throws TocException {

    // @since 6.1, check bookmarks are ok first
    // what to do if not ok?
    // - default behaviour is to fail
    // - but can be configured to remediate:
    boolean remediate = Docx4jProperties.getProperty("docx4j.toc.BookmarksIntegrity.remediate", false);

    //
    BookmarksIntegrity bm = new BookmarksIntegrity();
    StringWriter sw = new StringWriter();
    bm.setWriter(sw);
    BookmarksStatus result = null;
    try {
        // Checks are performed on all bookmarks, not just those with
        // a name of the form "_Toc*".  We don't check for missing _Toc bookmarks.
        result = bm.check(wordMLPackage.getMainDocumentPart(), remediate);
    } catch (Exception e) { /* won't happen */}
    if (result==BookmarksStatus.BROKEN) {
        throw new TocException("Encountered broken bookmarks; not configured to remediate. \n" + sw.toString());
    }

    if (Docx4J.pdfViaFO()) {
        return getPageNumbersMapViaFOP();
    } else {
        // recommended
        return getPageNumbersMapViaService();
    }
}


请注意,除非您是Plutext的PDF Converter服务的现有许可证持有人,否则将无法使用getPageNumbersMapViaService()。

有关可能的替代方法,请参见基于https://www.docx4java.org/blog/2020/03/documents4j-for-toc-update/https://www.docx4java.org/blog/2020/03/documents4j-for-pdf-output/

07-27 16:58