Java 插入附件到PDF文档
程序员文章站
2022-08-31 12:33:03
在文档中插入附件,可以起到与源文档配套使用的目的,以一种更简便的方式对文档起到补充说明的作用。下面将介绍通过Java编程插入附件到PDF文档中的方法。这里插入的文档可以是常见的文档类型,如Word、Excel、Ppt、Txt或者其他文件类型。插入方法,分两种情况,一种是直接加载文档内容作为附件添加到 ......
在文档中插入附件,可以起到与源文档配套使用的目的,以一种更简便的方式对文档起到补充说明的作用。下面将介绍通过java编程插入附件到pdf文档中的方法。这里插入的文档可以是常见的文档类型,如word、excel、ppt、txt或者其他文件类型。插入方法,分两种情况,一种是直接加载文档内容作为附件添加到pdf文档,另一种是通过给pdf文档添加注释并添加文档到注释的形式。两种方式中可根据文档需要,选择相应的附件添加方法。
使用工具:
关于jar文件添加:
步骤1:在java程序中新建一个文件夹可命名为lib。并将以下路径中的2个jar文件复制到新建的文件夹下。
步骤2:复制文件后,添加到引用类库:选中这两个jar文件,点击鼠标右键,选择“build path” – “add to build path”。完成引用。
java代码(供参考)
import com.spire.pdf.pdfdocument; import com.spire.pdf.annotations.*; import com.spire.pdf.attachments.pdfattachment; import com.spire.pdf.graphics.*; import java.awt.*; import java.awt.geom.dimension2d; import java.awt.geom.rectangle2d; import java.io.file; import java.io.fileinputstream; import java.io.ioexception; public class attachfiles { public static void main(string[] args) throws ioexception { //实例化pdfdocument类的对象 pdfdocument doc = new pdfdocument(); //加载需要添加附件的pdf文档 doc.loadfromfile("test.pdf"); //加载附件文档(excel)并作为附件添加到pdf pdfattachment attachment = new pdfattachment("sample.xlsx"); doc.getattachments().add(attachment); //在pdf页面指定位置绘制标签 string label = "testreport.docx"; pdftruetypefont font = new pdftruetypefont(new font("arial", font.bold, 14)); double x = 40; double y = doc.getpages().get(0).getactualsize().getheight() -800; doc.getpages().get(0).getcanvas().drawstring(label, font, pdfbrushes.getorange(), x, y); //以注释的形式添加附件到pdf string filepath = "测试文档.docx"; byte[] data = tobytearray(filepath); dimension2d size = font.measurestring(label); rectangle2d bound = new rectangle2d.float((float) (x + size.getwidth() + 3), (float) y, 10, 15); pdfattachmentannotation annotation = new pdfattachmentannotation(bound, filepath, data); annotation.setcolor(new pdfrgbcolor(new color(0, 128, 128))); annotation.setflags(pdfannotationflags.default); annotation.seticon(pdfattachmenticon.graph); annotation.settext("点击打开测试报告文档.docx"); doc.getpages().get(0).getannotationswidget().add(annotation); //保存文档 doc.savetofile("attachments.pdf"); } //读取文件到byte数组 public static byte[] tobytearray(string filepath) throws ioexception { file file = new file(filepath); long filesize = file.length(); if (filesize > integer.max_value) { system.out.println("file too big..."); return null; } fileinputstream fi = new fileinputstream(file); byte[] buffer = new byte[(int) filesize]; int offset = 0; int numread = 0; while (offset < buffer.length && (numread = fi.read(buffer, offset, buffer.length - offset)) >= 0) { offset += numread; } if (offset != buffer.length) { throw new ioexception("could not completely read file " + file.getname()); } fi.close(); return buffer; } }
附件添加效果(如下图):
(本文完)
推荐阅读
-
C# 添加文本、图片到PDF文档(基于Spire.Cloud.PDF.SDK)
-
Java 替换word文档文字并指定位置插入图片
-
java中针对safari下载pdf、excel、word等文档变成exe文件解决办法
-
Java 在PDF文档中绘制图形
-
C# 插入超链接到PDF文档(3种情况)
-
将积累多年的java学习资料,pdf文档给大家分享一下,比如《大话设计模式》《算法》《Linux私房菜》等等
-
阿里Java面试答案【PDF文档免费领】高清版
-
word2010使用插入对象功能将文件插入到当前文档中
-
插入到新Word2003文档中修复损坏的Word文档
-
荐 我把Github上最牛b的Java教程和实战项目整合成了一个PDF文档