日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > java >内容正文

java

Java 添加、更新和移除PDF超链接

發布時間:2024/7/5 java 56 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Java 添加、更新和移除PDF超链接 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

簡介

PDF超鏈接用一個簡單的鏈接包含了大量的信息,滿足了人們在不占用太多空間的情況下渲染外部信息的需求。下面將介紹通過Java 在PDF中添加、更新和移除超鏈接。

?

(一)工具使用:

  • ? Free Spire.PDF for Java 2.4.4(免費版)
  • ?Intellij IDEA

(二)導入Jar文件包:

  • ??方式一:首先,從官網獲取Free Spire.PDF for Java文件包。

Step 1 下載控件包之后解壓,打開“Project Structure”界面。(以下是三種在IDEA中快速打開Project Structure界面的方式,可選其中任意一種)

Step 2按以下操作步驟進行導入。① 選擇“Modules”—“Dependencies”,添加外置jar包;② 進入"Attach File or Directories"界面選擇jar文件路徑,然后點擊“OK”;③ 勾選jar路徑選項,點擊”OK”/”Apply”;④ 導入完成。如下圖:

  • ??方式二使用Maven配置導包。可以參考導入方法。

Java代碼示例參考

(一)?添加超鏈接到PDF

添加命名空間:?

import com.spire.pdf.*; import com.spire.pdf.annotations.*; import com.spire.pdf.graphics.*; import java.awt.*; import java.awt.font.TextAttribute; import java.awt.geom.*; import java.util.HashMap; 1. 添加超文本連接
public class TextLink {public static void main(String[] args) throws Exception{//創建PDF文檔PdfDocument doc = new PdfDocument();PdfPageBase page = doc.getPages().add();//初始化X,Y坐標float y = 30;float x = 0;// 創建一個普通字體PdfTrueTypeFont plainFont = new PdfTrueTypeFont(new Font("Arial Unicode MS",Font.PLAIN,13),true);//創建一個帶下劃線的字體HashMap<TextAttribute, Object> hm = new HashMap<TextAttribute, Object>();hm.put(TextAttribute.UNDERLINE, TextAttribute.UNDERLINE_ON);hm.put(TextAttribute.SIZE, 13);hm.put(TextAttribute.FAMILY, "Arial");Font font = new Font(hm);PdfTrueTypeFont underlineFont = new PdfTrueTypeFont(font,true);//添加超文本鏈接到PDFString label= "超文本鏈接: ";PdfStringFormat format = new PdfStringFormat();format.setMeasureTrailingSpaces(true);page.getCanvas().drawString(label, plainFont, PdfBrushes.getOrange(), 0, y, format);x = (float)plainFont.measureString(label,format).getWidth();//創建PdfTextWebLink對象PdfTextWebLink webLink = new PdfTextWebLink();//設置超鏈接文本webLink.setText("主頁");//設置超鏈接地址webLink.setUrl("https://www.google.com");//設置超鏈接字體和字體顏色 webLink.setFont(plainFont);webLink.setBrush(PdfBrushes.getBlue());//添加超鏈接到頁面webLink.drawTextWebLink(page.getCanvas(), new Point2D.Float(x, y));y= y +40;//保存文檔doc.saveToFile("AddLinks.pdf");doc.close();} }

添加結果:

2.?添加郵箱鏈接

public class EMailLink {public static void main(String[] args) throws Exception{//創建PDF文檔PdfDocument doc = new PdfDocument();PdfPageBase page = doc.getPages().add();//初始化X,Y坐標float y = 30;float x = 0;// 創建一個普通字體PdfTrueTypeFont plainFont = new PdfTrueTypeFont(new Font("Arial Unicode MS",Font.PLAIN,13),true);//創建一個帶下劃線的字體HashMap<TextAttribute, Object> hm = new HashMap<TextAttribute, Object>();hm.put(TextAttribute.UNDERLINE, TextAttribute.UNDERLINE_ON);hm.put(TextAttribute.SIZE, 13);hm.put(TextAttribute.FAMILY, "Arial");Font font = new Font(hm);PdfTrueTypeFont underlineFont = new PdfTrueTypeFont(font,true);//添加郵箱鏈接String label = "郵箱鏈接: ";PdfStringFormat format = new PdfStringFormat();format.setMeasureTrailingSpaces(true);page.getCanvas().drawString(label, plainFont, PdfBrushes.getOrange(), 0, y, format);x = (float)plainFont.measureString(label, format).getWidth();//創建PdfTextWebLink對象PdfTextWebLink webLink = new PdfTextWebLink();webLink = new PdfTextWebLink();//設置超鏈接文本webLink.setText("聯系我們");//設置超鏈接地址webLink.setUrl("mailto:123@qq.com");//設置超鏈接字體和字體顏色 webLink.setFont(plainFont);webLink.setBrush(PdfBrushes.getBlue());//添加超鏈接到頁面webLink.drawTextWebLink(page.getCanvas(), new Point2D.Float(x, y));y = y + 40;//保存文檔doc.saveToFile("AddLinks.pdf");doc.close();} }

添加結果:

3.?? 添加文檔鏈接

public class FileLink {public static void main(String[] args) throws Exception{//創建PDF文檔PdfDocument doc = new PdfDocument();PdfPageBase page = doc.getPages().add();//初始化X,Y坐標float y = 30;float x = 0;// 創建一個普通字體PdfTrueTypeFont plainFont = new PdfTrueTypeFont(new Font("Arial Unicode MS",Font.PLAIN,13),true);//創建一個帶下劃線的字體HashMap<TextAttribute, Object> hm = new HashMap<TextAttribute, Object>();hm.put(TextAttribute.UNDERLINE, TextAttribute.UNDERLINE_ON);hm.put(TextAttribute.SIZE, 13);hm.put(TextAttribute.FAMILY, "Arial");Font font = new Font(hm);PdfTrueTypeFont underlineFont = new PdfTrueTypeFont(font,true);//添加文檔鏈接到PDFString label = "文檔超鏈接: ";PdfStringFormat format = new PdfStringFormat();format.setMeasureTrailingSpaces(true);page.getCanvas().drawString(label, plainFont, PdfBrushes.getOrange(), 0, y, format);x = (float)plainFont.measureString(label, format).getWidth();page.getCanvas().drawString("打開文件", plainFont, PdfBrushes.getBlue(), x, y, format);Rectangle2D rect = new Rectangle2D.Float(x,y+10,60,15);//創建一個文件超鏈接對象并加載文件PdfFileLinkAnnotation fileLinkAnnotation = new PdfFileLinkAnnotation(rect,"C:\\Users\\Administrator\\Desktop\\Sample.pdf");fileLinkAnnotation.setBorder(new PdfAnnotationBorder(0f));//添加文件到超鏈接((PdfNewPage) ((page instanceof PdfNewPage) ? page : null)).getAnnotations().add(fileLinkAnnotation);//保存文檔doc.saveToFile("AddLinks.pdf");doc.close();} }

添加結果:

(二)?更新和移除超鏈接

? ? ? 測試文檔:

  

  使用PDFAnnotatioCollection 類和PdfTextWebLinkAnnotationWidget類創建超鏈注釋集合并獲取到第一個超鏈接,使用getUrl ()方法設置超鏈接地址,removeAt()方法移除超鏈接。

import com.spire.pdf.PdfDocument; import com.spire.pdf.PdfPageBase; import com.spire.pdf.annotations.PdfAnnotationCollection; import com.spire.pdf.annotations.PdfTextWebLinkAnnotationWidget;public class UpdateDelLinks {public static void main(String[] args) throws Exception {//創建PDF文檔PdfDocument doc = new PdfDocument();//加載PDF源文件doc.loadFromFile("data/AddLinks.pdf");//獲取文檔第一頁PdfPageBase page = doc.getPages().get(0);//獲取第一頁超鏈接注釋的集合PdfAnnotationCollection annotationCollection = page.getAnnotationsWidget();//獲取第一個超鏈接PdfTextWebLinkAnnotationWidget uriAnnotationWidget = (PdfTextWebLinkAnnotationWidget) annotationCollection.get(0);//設置超鏈接uriAnnotationWidget.setUrl("www.baidu.com");//removeAt()方法移除第二條超鏈接annotationCollection.removeAt(1);//保存文件doc.saveToFile("Output.pdf");} }

更新移除結果:

(本文完)

轉載請注明出處!?

?

轉載于:https://www.cnblogs.com/MariaWang/p/10950608.html

總結

以上是生活随笔為你收集整理的Java 添加、更新和移除PDF超链接的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。