如何使用Java中的pdfbox api从pdf获取特定文本

时间:2018-11-19 11:14:16

标签: java pdfbox

我使用了这段代码,输出的是整个页面的文字,我想要特定的     文本?     有什么解决办法吗?

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();
    }
}

0 个答案:

没有答案