0

如何PDDestination在 PDFbox 中使用类?方法是否 getPagenumber()会返回当前页码

谁能分享一下你的观点谢谢

4

1 回答 1

-1

or的用法与iTextPDDestination的orPDAction非常相似。PdfDestinationPdfAction

因此,您可能需要先搜索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);
于 2013-09-18T16:03:47.423 回答