gpt4 book ai didi

java - 使用 PDFBox 从 PDF 文档中读取特定页面

转载 作者:太空狗 更新时间:2023-10-29 22:42:16 27 4
gpt4 key购买 nike

如何使用 PDFBox 从 PDF 文档中读取特定页面(给定页码)?

最佳答案

这应该有效:

PDPage firstPage = (PDPage)doc.getAllPages().get( 0 );

BookMark section of the tutorial 中所示

2015 年更新,版本 2.0.0 快照

这似乎已被删除并放回原处(?)。 getPage 在 2.0.0 javadoc 中.要使用它:

PDDocument document = PDDocument.load(new File(filename));
PDPage doc = document.getPage(0);

getAllPages 方法已重命名 getPages

PDPage page = (PDPage)doc.getPages().get( 0 );

关于java - 使用 PDFBox 从 PDF 文档中读取特定页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6839787/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com