iText操作PDF学习(三)

时间:2021-02-14 05:39:56

三、 用 iText 进行 PDF 操作

1) 经典的 hello word.(说明: 生成一个 PDF、内容为 hello word!)

新建java project iTextDemo;-------新建类HelloiText--------在main方法中编写以下代码:

//新建一个文档
Document document = new Document();


try {
//建立一个书写器与文档关联
PdfWriter.getInstance(document, new FileOutputStream("D:\\helloiText.pdf"));
//打开文档
document.open();
//向文档中写入文字
document.add(new Paragraph("hello world!"));

} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (DocumentException e) {
e.printStackTrace();
}finally{
//关闭文档
document.close();
}

运行-输出:
在D盘可看见生成了一个helloiText.pdf文件,打开文件可见:iText操作PDF学习(三)


至此,最简单的iText操作创建helloworld PDF文件程序完成了