我使用了这段代码,输出的是整个页面的文字,我想要特定的 文本? 有什么解决办法吗?
public class ReadingText {
public static void main(String args[]) throws IOException {
File file = new File("C:/PdfBox_Examples/new.pdf");
PDDocument document = PDDocument.load(file);
PDFTextStripper pdfStripper = new PDFTextStripper();
String text = pdfStripper.getText(document);
System.out.println(text);
document.close();
}
}