PDFBox サンプルプログラム

目次

PDFからTEXTデータを抽出して標準出力へ出力する


try {
    //PDFドキュメントをロード
    PDDocument document = PDDocument.load("hogehoge.pdf");

    //テキスト分解クラス生成
    PDFTextStripper stripper = new PDFTextStripper();
    //抽出実施
    String text = stripper.getText(document);
    //標準出力で確認
    System.out.println(text);
    
    document.close();
    
} catch (IOException e) {
    e.printStackTrace();
}