您现在的位置是:课程教程文章

Java在PDF中删除注释

2023-12-14 21:30课程教程文章 人已围观

流程

1、使用Document类加载PDF文档。

2、用Document.getPages().get_Item(int).getAnnotations().delete()删除所有注释。

3、用Document.save保存更新的PDF。

实例

// Open source PDF document
Document pdfDocument = new Document("input.pdf");
 
// Delete all annotation
pdfDocument.getPages().get_Item(1).getAnnotations().delete();
 
// Save the update document
pdfDocument.save("output.pdf");

以上就是Java在PDF中删除注释的方法,希望对大家有所帮助。更多Java学习指路:Java基础

本教程操作环境:windows7系统、java10版,DELL G3电脑。

课程教程:Java在PDF中删除注释

上一篇:Java异常体系的探究

下一篇:没有了

站点信息

  • 文章统计篇文章