如何PDDestination
在 PDFbox 中使用类?方法是否 getPagenumber()
会返回当前页码
谁能分享一下你的观点谢谢
or的用法与iTextPDDestination
的orPDAction
非常相似。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);