PDFBox - 删除页面
现在让我们学习如何从 PDF 文档中删除页面。
从现有文档中删除页面
您可以使用PDDocument类的removePage()方法从现有 PDF 文档中删除页面。
第 1 步:加载现有 PDF 文档
使用PDDocument类的静态方法load()加载现有 PDF 文档。此方法接受文件对象作为参数,因为这是一个静态方法,您可以使用类名调用它,如下所示。
File file = new File("path of the document") PDDocument.load(file);
第 2 步:列出页数
您可以使用getNumberOfPages()方法列出 PDF 文档中存在的页数,如下所示。
int noOfPages= document.getNumberOfPages(); System.out.print(noOfPages);
第 3 步:删除页面
您可以使用PDDocument类的removePage()方法从PDF 文档中删除页面。对于此方法,您需要传递要删除的页面的索引。
在指定 PDF 文档中页面的索引时,请记住这些页面的索引从零开始,即,如果要删除第一页,则索引值需要为 0。
document.removePage(2);
第 4 步:保存文档
删除页面后,使用PDDocument类的save()方法保存 PDF 文档,如以下代码块所示。
document.save("Path");
第 5 步:关闭文档
最后,使用PDDocument类的close()方法关闭文档,如下所示。
document.close();
例子
假设我们有一个名为sample.pdf的PDF文档,它包含三个空白页面,如下所示。
此示例演示如何从现有 PDF 文档中删除页面。在这里,我们将加载上面指定的名为example.pdf的 PDF 文档,从中删除页面,并将其保存在路径C:/PdfBox_Examples/中。将此代码保存在名为Removing_pages.java的文件中。
import java.io.File; import java.io.IOException; import org.apache.pdfbox.pdmodel.PDDocument; public class RemovingPages { public static void main(String args[]) throws IOException { //Loading an existing document File file = new File("C:/PdfBox_Examples/sample.pdf"); PDDocument document = PDDocument.load(file); //Listing the number of existing pages int noOfPages= document.getNumberOfPages(); System.out.print(noOfPages); //Removing the pages document.removePage(2); System.out.println("page removed"); //Saving the document document.save("C:/PdfBox_Examples/sample.pdf"); //Closing the document document.close(); } }
使用以下命令从命令提示符编译并执行保存的 Java 文件。
javac RemovingPages.java java RemovingPages
执行后,上述程序将创建一个 PDF 文档,其中空白页显示以下消息。
3 page removed
如果验证指定的路径,可以发现所需的页面被删除,文档中只剩下两页,如下所示。