我的应用程序以PDF格式管理构建计划。在文档的第一页中,我们代表了全局视图,在这些视图中我们可以找到每个子组件的引用。其他页面是这些子组件的详细计划。
示例:
Document A with 80 pages:
- Page1 it's a global plan with n subcomponent:
- component 1 reference comp1
- Component 2 reference comp2
- component 3 reference comp3
- Component 4 reference comp4
- component n reference compn
And
- Page 2 is the detail of component 1 (comp1)
- Page 3 is the detail of component 2 (comp2)
- Page 4 is the detail of component 3 (comp3)
- Page 5 is the detail of component 4 (comp4)
- Page x is the detail of the component n (compn)
在文档中,我有一个盒式磁带,其中包含页面上的数据,尤其是引用(compn)。
我想在页面1中添加一个链接以重定向到包含所选子组件详细信息的页面。
我尝试使用Apache pdfbox提取数据(字符串,元数据等),但现在我不知道如何链接所有这些内容。
我可以更改文档的结构以在文本中添加链接吗?
此致
Moosman