PDFBox サンプルプログラム

目次

空白ページが2ページあるだけのPDFを作成する


try {
    //PDFドキュメントを作成
    PDDocument document = new PDDocument();
    //ページを追加(1ページ目)
    document.addPage(new PDPage());
    
    //ページを追加(2ページ目)
    document.addPage(new PDPage());
    
    //作成したPDFを保存
    document.save("hogehoge.pdf");
    document.close();
} catch (IOException e) {
    e.printStackTrace();
} catch (COSVisitorException e) {
    e.printStackTrace();
}