如何在PDFbox中使用PDDestination
课程?
getPagenumber()
方法是否会返回当前页码
任何人都可以分享你的观点 谢谢
答案 0 :(得分:-1)
PDDestination
或PDAction
的使用情况与 iText 的PdfDestination
或PdfAction
非常相似。
因此,您可能希望首先搜索 iText 示例。
特别是在 PDFBox 上, 例如 以下内容使第一页打开第5页。
PDDestination dest = new PDPageDestination();
// When you open this PDF, you will see page 5.
dest.setPageNumber(4)
PDActionGoTo action = new PDActionGoTo();
action.setDestination(dest);
document.getDocumentCatalog().setOpenAction(action);