彩票走势图

国产PDF格式处理控件Spire.PDF功能演示:在 Java 中删除或更新 PDF 中的超链接

翻译|使用教程|编辑:李显亮|2021-07-26 10:24:48.303|阅读 225 次

概述:本文演示了如何使用 Spire.PDF for Java 删除或更新 PDF 文档中的超链接。

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

相关链接:

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

本文演示了如何使用 Spire.PDF for Java 删除或更新 PDF 文档中的超链接。当您使用本文所述的方法删除超链接时,超链接的外观将保持不变,但后面的链接将被删除。

点击此处下载最新版测试

import com.spire.pdf.PdfDocument;
import com.spire.pdf.PdfPageBase;
import com.spire.pdf.annotations.PdfAnnotationCollection;
import com.spire.pdf.annotations.PdfUriAnnotationWidget;

public class RemoveHyperlinks {
    public static void main(String[] args) throws Exception {

        //Create a PdfDocument object
        PdfDocument document = new PdfDocument();

        //Load the sample PDF file
        document.loadFromFile("C:\\Users\\Administrator\\Desktop\\Hyperlinks.pdf");

        //Get the first page
        PdfPageBase page = document.getPages().get(0);

        //Get annotation collection
        PdfAnnotationCollection widgetCollection = page.getAnnotationsWidget();

        //Remove the second annotation which is a hyperlink in the document
        widgetCollection.removeAt(1);

        //Get the first url annotation widget
        PdfUriAnnotationWidget uriWidget = (PdfUriAnnotationWidget)widgetCollection.get(0);

        //Reset the url
        uriWidget.setUri("//www.e-iceblue.com/Introduce/pdf-for-java.html");

        //Save to file
        document.saveToFile("Result.pdf");
    }
}

输出结果

国产PDF格式处理控件Spire.PDF功能演示:在 Java 中删除或更新 PDF 中的超链接



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


标签:

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


为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP