我正在使用 iText 和 XMLWorker 生成 PDF。问题是我们需要为 PDF 生成页码的 TOC。我在列表中有 mt 部分标题。有了这个列表,我可以生成没有页码的 TOC。但是我们的要求是我们也需要没有页面。下面是我的列表,其中包含部分详细信息。
List<String> sectionList=new ArrayList<String>();
sectionList.add("Section1");
sectionList.add("Section2");
sectionList.add("Section3");
sectionList.add("Section4");
sectionList.add("Section5");`
我的 CLOB 对象是
String pdfString="<h1>Section1</h1><p>Some content for section1</p>" +
"<h1>Section2</h1><p>Some content for section2</p>" +
"<h1>Section3</h1><p>Some content for section3</p>" +
"<h1>Section4</h1><p>Some content for section4</p>" +
"<h1>Section5</h1><p>Some content for section5</p>";
部分内容将超过 1 页,因此我们需要 TOC 中的页码。有什么方法可以做到这一点。 注意这是一个示例,我们有许多部分和小节。