📅  最后修改于: 2020-11-12 05:16:45             🧑  作者: Mango
在上一章中,我们已经看到了如何在现有的PDF文档中添加文本。在本章中,我们将讨论如何从现有的PDF文档中读取文本。
提取文本是PDF框库的主要功能之一。您可以使用PDFTextStripper类的getText()方法提取文本。此类从给定的PDF文档中提取所有文本。
以下是从现有PDF文档提取文本的步骤。
使用PDDocument类的静态方法load()加载现有的PDF文档。该方法接受文件对象作为参数,因为这是一个静态方法,因此您可以使用类名调用它,如下所示。
File file = new File("path of the document")
PDDocument document = PDDocument.load(file);
PDFTextStripper类提供了从PDF文档检索文本的方法,因此,请实例化该类,如下所示。
PDFTextStripper pdfStripper = new PDFTextStripper();
您可以使用PDFTextStripper类的getText()方法从PDF文档中读取/检索页面的内容。对于此方法,您需要将文档对象作为参数传递。此方法检索给定文档中的文本,并以String对象的形式返回。
String text = pdfStripper.getText(document);
最后,使用PDDocument类的close()方法关闭文档,如下所示。
document.close();
假设我们有一个PDF文档,其中包含一些文本,如下所示。
本示例演示了如何从上述PDF文档中读取文本。在这里,我们将创建一个Java程序并加载一个名为new.pdf的PDF文档,该文档保存在路径C:/ PdfBox_Examples /中。将此代码保存在名为ReadingText.java的文件中。
import java.io.File;
import java.io.IOException;
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.text.PDFTextStripper;
public class ReadingText {
public static void main(String args[]) throws IOException {
//Loading an existing document
File file = new File("C:/PdfBox_Examples/new.pdf");
PDDocument document = PDDocument.load(file);
//Instantiate PDFTextStripper class
PDFTextStripper pdfStripper = new PDFTextStripper();
//Retrieving text from PDF document
String text = pdfStripper.getText(document);
System.out.println(text);
//Closing the document
document.close();
}
}
使用以下命令从命令提示符处编译并执行保存的Java文件。
javac ReadingText.java
java ReadingText
执行后,上述程序将从给定的PDF文档中检索文本并显示如下所示。
This is an example of adding text to a page in the pdf document. we can add as many lines
as we want like this using the ShowText() method of the ContentStream class.