彩票走势图

国产PDF格式处理控件Spire.PDF功能演示:在Java中获取PDF 注释

原创|使用教程|编辑:张莹心|2021-10-22 11:41:06.057|阅读 544 次

概述:PDF 注释是添加到 PDF 文档的附加对象。有时您可能需要从 PDF 文件中提取这些附加数据,以便在不打开文档的情况下了解注释详细信息。在本文中,我们将介绍如何使用Spire.PDF for Java在 Java 中从 PDF 中获取注释。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

Spire.PDF for Java 是一款专门对 PDF 文档进行操作的 Java 类库。该类库的主要功能在于帮助开发人员在 Java 应用程序(J2SE和J2EE)中生成 PDF 文档和操作现有 PDF 文档,并且运行环境无需安装 Adobe Acrobat。

PDF 注释是添加到 PDF 文档的附加对象。有时您可能需要从 PDF 文件中提取这些附加数据,以便在不打开文档的情况下了解注释详细信息。在本文中,我们将介绍如何使用Spire.PDF for Java在 Java 中从 PDF 中获取注释。

点击此处下载最新版测试

从 PDF 文件中获取注释

Spire.PDF for Java 提供了PdfPageBase.getAnnotationsWidget()方法来获取文档指定页面的注释集合。

以下是从PDF文件的第一页获取所有注释的步骤:

  • 创建一个PdfDocument类的对象。
  • 使用PdfDocument.loadFromFile()方法加载示例 PDF 文档。
  • 创建一个 StringBuilder 对象。
  • 使用PdfPageBase.getAnnotationsWidget()方法获取文档第一页的注释集合。
  • 循环弹出注释,使用PdfAnnotation.getText() 方法从每个注释中提取数据后,然后使用StringBuilder.append()方法将数据附加到StringBuilder实例。
  • 使用Writer.write()方法将提取的数据写入 txt 文档。
import com.spire.pdf.*;
import com.spire.pdf.annotations.*;

import java.io.FileWriter;

public class Test {
    public static void main(String[] args) throws Exception {
        //Create an object of PdfDocument class.
        PdfDocument pdf = new PdfDocument();
        //Load the sample PDF document
        pdf.loadFromFile("Annotations.pdf");

        //Get the annotation collection of the first page of the document.
        PdfAnnotationCollection annotations = pdf.getPages().get(0).getAnnotationsWidget();

        //Create a StringBuilder object
        StringBuilder content = new StringBuilder();

        //Traverse all the annotations
        for (int i = 0; i < annotations.getCount(); i++) {

            //If it is the pop-up annotations, continue
              if (annotations.get(i) instanceof PdfPopupAnnotationWidget)
              continue;
              
                //Get the annotations’ author
                content.append("Annotation Author: " + annotations.get(i).getAuthor()+"\n");

                //Get the annotations’ text
                content.append("Annotation Text: " + annotations.get(i).getText()+"\n");

                //Get the annotations’ modified date
                String modifiedDate = annotations.get(i).getModifiedDate().toString();
                content.append("Annotation ModifiedDate: " + modifiedDate+"\n");

                //Get the annotations’ name
                content.append("Annotation Name: " + annotations.get(i).getName()+"\n");

                //Get the annotations’ location
                content.append ("Annotation Location: " + annotations.get(i).getLocation()+"\n");
                }
        
        //Write to a .txt file
        FileWriter fw = new FileWriter("GetAnnotations.txt");
        fw.write(content.toString());
        fw.flush();
        fw.close();
        }
    }

国产PDF格式处理控件Spire.PDF功能演示:在Java中获取PDF 注释

整合所有格式API处理套包Spire.office for Java正在慧都网火热销售中!立马1分钟了解全部咨询!


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP