Java和iText导出pdf文档

一:工程截图:


二:项目运行截图:


三:源代码:

Book.java

package com.iText.bean;public class Book {private int bookId;// 图书编号private String name;// 图书名称private String author;// 图书作者private float price;// 图书价格private String isbn;// 图书ISBNprivate String pubName;// 图书出版社private byte[] preface;// 封面图片public Book() {super();}public Book(int bookId, String name, String author, float price,String isbn, String pubName, byte[] preface) {super();this.bookId = bookId;this.name = name;this.author = author;this.price = price;this.isbn = isbn;this.pubName = pubName;this.preface = preface;}public int getBookId() {return bookId;}public void setBookId(int bookId) {this.bookId = bookId;}public String getName() {return name;}public void setName(String name) {this.name = name;}public String getAuthor() {return author;}public void setAuthor(String author) {this.author = author;}public float getPrice() {return price;}public void setPrice(float price) {this.price = price;}public String getIsbn() {return isbn;}public void setIsbn(String isbn) {this.isbn = isbn;}public String getPubName() {return pubName;}public void setPubName(String pubName) {this.pubName = pubName;}public byte[] getPreface() {return preface;}public void setPreface(byte[] preface) {this.preface = preface;}}

Student.java

package com.iText.bean;import java.util.Date;public class Student {private long id;// 学号private String name;// 姓名private int age;// 年龄private boolean sex;// 性别private Date birthday;// 出生日期public Student() {super();}public Student(long id, String name, int age, boolean sex, Date birthday) {super();this.id = id;this.name = name;this.age = age;this.sex = sex;this.birthday = birthday;}public long getId() {return id;}public void setId(long id) {this.id = id;}public String getName() {return name;}public void setName(String name) {this.name = name;}public int getAge() {return age;}public void setAge(int age) {this.age = age;}public boolean getSex() {return sex;}public void setSex(boolean sex) {this.sex = sex;}public Date getBirthday() {return birthday;}public void setBirthday(Date birthday) {this.birthday = birthday;}}

StrHelp.java

package com.iText.util;import java.io.UnsupportedEncodingException;
/*** 以上是两个帮助封装类,都是为了对付iText的中文问题的* @author zhaoxinguo**/
public class StrHelp {public static String getChinese(String s) {try {return new String(s.getBytes("gb2312"), "iso-8859-1");} catch (UnsupportedEncodingException e) {return s;}}}

PdfParagraph.java

package com.iText.util;import java.io.IOException;
import com.lowagie.text.BadElementException;
import com.lowagie.text.Cell;
import com.lowagie.text.Chunk;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Font;
import com.lowagie.text.Paragraph;
import com.lowagie.text.Phrase;
import com.lowagie.text.pdf.BaseFont;/*** 下载地址:http://sourceforge.net/projects/itext/files/latest/download* * @author zhaoxinguo* */
public class PdfParagraph extends Paragraph {/*** */private static final long serialVersionUID = 8852816419489363243L;public PdfParagraph(String content) {super(content, getChineseFont(12, false));}public PdfParagraph(String content, int fontSize, boolean isBold) {super(content, getChineseFont(fontSize, isBold));}// 设置字体-返回中文字体protected static Font getChineseFont(int nfontsize, boolean isBold) {BaseFont bfChinese;Font fontChinese = null;try {bfChinese = BaseFont.createFont("c://windows//fonts//simsun.ttc,1",BaseFont.IDENTITY_H, BaseFont.EMBEDDED);if (isBold) {fontChinese = new Font(bfChinese, nfontsize, Font.BOLD);} else {fontChinese = new Font(bfChinese, nfontsize, Font.NORMAL);}} catch (DocumentException e) {e.printStackTrace();} catch (IOException e) {e.printStackTrace();}return fontChinese;}// 转化中文protected Cell ChangeCell(String str, int nfontsize, boolean isBold)throws IOException, BadElementException, DocumentException {Phrase ph = ChangeChinese(str, nfontsize, isBold);Cell cell = new Cell(ph);return cell;}// 转化中文protected Chunk ChangeChunk(String str, int nfontsize, boolean isBold)throws IOException, BadElementException, DocumentException {Font FontChinese = getChineseFont(nfontsize, isBold);Chunk chunk = new Chunk(str, FontChinese);return chunk;}// 转化中文protected Phrase ChangeChinese(String str, int nfontsize, boolean isBold)throws IOException, BadElementException, DocumentException {Font FontChinese = getChineseFont(nfontsize, isBold);Phrase ph = new Phrase(str, FontChinese);return ph;}}

ExportPdf.java

package com.iText.util;import java.awt.Color;
import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.net.MalformedURLException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;
import java.util.Iterator;import javax.swing.JOptionPane;import com.iText.bean.Book;
import com.lowagie.text.Cell;
import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Element;
import com.lowagie.text.HeaderFooter;
import com.lowagie.text.Image;
import com.lowagie.text.PageSize;
import com.lowagie.text.Phrase;
import com.lowagie.text.Rectangle;
import com.lowagie.text.pdf.PdfPCell;
import com.lowagie.text.pdf.PdfPTable;
import com.lowagie.text.pdf.PdfWriter;/*** 利用开源组件IText2.0.4动态导出PDF文档 转载时请保留以下信息,注明出处!* * @author zhaoxinguo* @version v1.0* @param <T>应用泛型,代表任意一个符合javabean风格的类*        注意这里为了简单起见,boolean型的属性xxx的get器方式为getXxx(),而不是isXxx()*        byte[]表图片数据,注意合适的大小*/
public class ExportPdf<T> {public void exportPdf(Collection<T> dataset, OutputStream out) {exportPdf("测试iText导出PDF文档", null, dataset, out, "yyyy-MM-dd");}public void exportPdf(String[] headers, Collection<T> dataset,OutputStream out) {exportPdf("测试iText导出PDF文档", headers, dataset, out, "yyyy-MM-dd");}public void exportPdf(String[] headers, Collection<T> dataset,OutputStream out, String pattern) {exportPdf("测试iText导出PDF文档", headers, dataset, out, pattern);}/*** 这是一个通用的方法,利用了JAVA的反射机制,可以将放置在JAVA集合中并且符号一定条件的数据以PDF 的形式输出到指定IO设备上* * @param title*            表格标题名* @param headers表格属性列名数组* @param dataset需要显示的数据集合*            ,集合中一定要放置符合javabean风格的类的对象。此方法支持的javabean属性的数据类型有基本数据类型及String*            ,Date,byte[](图片数据)* @param out与输出设备关联的流对象*            ,可以将PDF文档导出到本地文件或者网络中* @param pattern如果有时间数据*            ,设定输出格式。默认为"yyy-MM-dd"*/public void exportPdf(String title, String[] headers,Collection<T> dataset, OutputStream out, String pattern) {// 作为报表的PDF文件,一定要适合打印机的输出打印Rectangle rectPageSize = new Rectangle(PageSize.A4);// 定义A4页面大小// rectPageSize = rectPageSize.rotate();// 加上这句可以实现A4页面的横置Document document = new Document(rectPageSize, 50, 50, 50, 50);// 其余4个参数,设置了页面的4个边距try {// 将PDF文档写出到out所关联IO设备上的书写对象PdfWriter.getInstance(document, out);// 添加文档元数据信息document.addTitle(StrHelp.getChinese(title));document.addSubject("export information");document.addAuthor("leno");document.addCreator("leno");document.addKeywords("pdf itext");// 定义页头和页尾HeaderFooter header = new HeaderFooter(new PdfParagraph(title, 20,true), false);header.setAlignment(Element.ALIGN_CENTER);HeaderFooter footer = new HeaderFooter(new Phrase("This   is   page   "), new Phrase("."));footer.setAlignment(Element.ALIGN_CENTER);document.setHeader(header);document.setFooter(footer);// 打开PDF文档document.open();// 添加一张表格,使用Table或者PdfPTable// Table table = new Table(headers.length);// table.setWidth(16*headers.length);// //table.setWidths(new float[]{20,20,20,30});// table.setCellsFitPage(true);// table.setAutoFillEmptyCells(true);// table.setAlignment(Table.ALIGN_CENTER);// table.setBackgroundColor(Color.yellow);// table.setBorderColor(Color.green);PdfPTable table = new PdfPTable(headers.length);// table.setHorizontalAlignment(Element.ALIGN_CENTER);table.setWidthPercentage(16 * headers.length);// 产生表格标题行for (int i = 0; i < headers.length; i++) {PdfPCell cell = new PdfPCell(new PdfParagraph(headers[i], 14,true));cell.setHorizontalAlignment(Cell.ALIGN_CENTER);cell.setVerticalAlignment(Cell.ALIGN_MIDDLE);cell.setBackgroundColor(Color.cyan);cell.setBorderColor(Color.green);table.addCell(cell);}// 遍历集合数据,产生数据行Iterator<T> it = dataset.iterator();int index = 0;while (it.hasNext()) {index++;T t = (T) it.next();// 利用反射,根据javabean属性的先后顺序,动态调用getXxx()方法得到属性值Field[] fields = t.getClass().getDeclaredFields();for (short i = 0; i < fields.length; i++) {PdfPCell cell = null;Field field = fields[i];String fieldName = field.getName();String getMethodName = "get"+ fieldName.substring(0, 1).toUpperCase()+ fieldName.substring(1);try {Class tCls = t.getClass();Method getMethod = tCls.getMethod(getMethodName,new Class[] {});Object value = getMethod.invoke(t, new Object[] {});// 判断值的类型后进行强制类型转换String textValue = null;if (value instanceof Boolean) {boolean bValue = (Boolean) value;textValue = "男";if (!bValue) {textValue = "女";}} else if (value instanceof Date) {Date date = (Date) value;SimpleDateFormat sdf = new SimpleDateFormat(pattern);textValue = sdf.format(date);} else if (value instanceof byte[]) {byte[] bsValue = (byte[]) value;Image img = Image.getInstance(bsValue);cell = new PdfPCell(img);} else {textValue = value.toString();}// 如果不是图片数据,就当做文本处理if (textValue != null) {cell = new PdfPCell(new PdfParagraph(textValue));}cell.setHorizontalAlignment(Cell.ALIGN_CENTER);cell.setVerticalAlignment(Cell.ALIGN_MIDDLE);cell.setBorderColor(Color.green);table.addCell(cell);} catch (SecurityException e) {// TODO Auto-generated catch blocke.printStackTrace();} catch (NoSuchMethodException e) {// TODO Auto-generated catch blocke.printStackTrace();} catch (IllegalArgumentException e) {// TODO Auto-generated catch blocke.printStackTrace();} catch (IllegalAccessException e) {// TODO Auto-generated catch blocke.printStackTrace();} catch (InvocationTargetException e) {// TODO Auto-generated catch blocke.printStackTrace();} catch (MalformedURLException e) {// TODO Auto-generated catch blocke.printStackTrace();} catch (IOException e) {// TODO Auto-generated catch blocke.printStackTrace();} finally {// 清理资源}}}document.add(table);document.close();} catch (DocumentException e) {// TODO Auto-generated catch blocke.printStackTrace();}}public static void main(String[] args) throws Exception {// 测试学生/*ExportPdf<Student> ex = new ExportPdf<Student>();String[] headers = { "学号", "姓名", "年龄", "性别", "出生日期" };java.util.List<Student> dataset = new ArrayList<Student>();dataset.add(new Student(10000001, "张三", 20, true, new Date()));dataset.add(new Student(20000002, "李四", 24, false, new Date()));dataset.add(new Student(30000003, "王五", 22, true, new Date()));OutputStream out = new FileOutputStream("E://Student.pdf");ex.exportPdf(headers, dataset, out);out.close();JOptionPane.showMessageDialog(null, "pdf导出成功!");*//****************************************************************************/// 测试图书ExportPdf<Book> ex2 = new ExportPdf<Book>();String[] headers2 = { "图书编号", "图书名称", "图书作者", "图书价格", "图书ISBN","图书出版社", "封面图片" };java.util.List<Book> dataset2 = new ArrayList<Book>();try {BufferedInputStream bis = new BufferedInputStream(new FileInputStream("book_1.jpg"));byte[] buf = new byte[bis.available()];while ((bis.read(buf)) != -1) {//}dataset2.add(new Book(1, "jsp", "leno", 300.33f, "1234567","清华出版社", buf));dataset2.add(new Book(2, "java编程思想", "brucl", 300.33f, "1234567","阳光出版社", buf));dataset2.add(new Book(3, "DOM艺术", "lenotang", 300.33f, "1234567","清华出版社", buf));dataset2.add(new Book(4, "c++经典", "leno", 400.33f, "1234567","清华出版社", buf));dataset2.add(new Book(5, "c#入门", "leno", 300.33f, "1234567","汤春秀出版社", buf));OutputStream out2 = new FileOutputStream("E://Book.pdf");ex2.exportPdf(headers2, dataset2, out2);out2.close();JOptionPane.showMessageDialog(null, "pdf导出成功!");System.out.println("pdf导出成功!");} catch (FileNotFoundException e) {e.printStackTrace();} catch (IOException e) {e.printStackTrace();}}
}




本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/443540.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

linux多进程原理,Linux进程调度

极简模式假设我的系统只有一种调度算法cfs那么有个调度的队列 cfs_rq所有running的进程都会 进入这个队列&#xff0c;不在running 或者其他情况会出队列&#xff0c;ok。则假设队列控制的算法有以下。cfs_rq_enqueuecfs_rq_dequeuecfs_rq_pick所操作的是进程描述符 task_struc…

openwrt使用linux内核版本,降低OpenWRT的Linux内核版本

不久前&#xff0c;为了移植某驱动程序&#xff0c;笔者可谓绞尽脑汁&#xff0c;在4.1内核版本上&#xff0c;尝试了很多次都没能成功&#xff0c;后来仔细分析&#xff0c;才知道是内核版本过高导致的&#xff0c;本文给出降低内核版本的方法&#xff0c;具体编译环境的搭建&…

linux天气软件,类似智能手机!Linux中安装Conky天气插件

如今&#xff0c;智能手机中很多都安装相匹配外观的天气小插件&#xff0c;而对于喜欢操作系统平台的用户而言&#xff0c;可以在你的Linux桌面中拥有像智能手机一样的天气外观。通过Flair Weather Conky可以将使用一个GUI工具Conky Manager在Linux中轻松地管理Conky。这里介绍…

linux安装下载中文包,linux下安装中文包和字体

在虚拟机中使用中文输入法和中文显示使用的是rhel5的镜像我把其镜像挂载在/mnt/cdrom中&#xff0c;然后切换到/Server目录下&#xff0c;安装支持中文字体Mount /dev/cdrom /mnt/cdromCd /mnt/cdrom/serverrpm -ivh fonts-chinese-3.02-9.6.el5.noarch.rpmrpm -ivh fonts-ISO8…

linux无桌面重做系统,Linux不需要重做系统

感谢hsyyf的投递但从系统构架上来讲&#xff0c;总所周知&#xff0c;Linux的稳定性远大于windows&#xff0c;单纯的使用不会引起系统的损坏。当不进行危险操作时&#xff0c;例如执行sudo rm-rf/*之类的命令&#xff0c;或者混用分区工具&#xff0c;是不会引起各种彻底性损坏…

linux远程连接工具putty使用方法,linux远程登陆工具putty使用

#putty工具百度下载即可&#xff0c;最好从官网下。安装时&#xff0c;除安装位置外&#xff0c;其余默认即可。1、使用命令ifconfig命令&#xff0c;记下eth0的IP&#xff0c;我的是192.168.1.1692、打开putty&#xff0c;并将查到的ip写在图中位置&#xff0c;下侧的Saved Se…

linux mint安装步骤,Linux mint 安装步骤

##Linux mint 安装步骤##家里的笔记本以前一直用Deepin系统&#xff0c;但是Deepin系统的wifi实在是太慢了。还有就是启动软件是有时候总没响应&#xff0c;卡死机。 最近重装系统&#xff0c;选择了mint ,在这里记录下安装步骤。###1.制作U盘启动盘###下载iso文件&#xff0c;…

linux 商业游戏,Ubuntu下安装试玩原生Linux版商业游戏Braid

这款原生Linux版商业游戏Braid国外出售价大约在80美元左右。每年在Linux平台上发布的原生商业游戏是屈指可数&#xff0c;而且这些游戏的质量也是参差不齐。不过这款原生Linux版商业游戏Braid还是值得一玩的&#xff0c;这款Braid游戏创意十足&#xff0c;您可以通过拼图和时间…

linux centos 7 crontab 启动,CentOS 7 Linux执行crontab 计划任务实操 - 好应网

[inlosc_lg_title]一、环境准备[/inlosc_lg_title]yum install vixie-cron #安装定时任务插件yum install crontabs #安装定时任务crontabs/bin/systemctl restart crond.service #启动服务/bin/systemctl reload crond.service #重新载入配置/bin/systemctl status crond.serv…

三羊献瑞c语言编程入门,蓝桥杯-三羊献瑞,

蓝桥杯-三羊献瑞&#xff0c;更多精彩文章请关注公众号『大海的BLOG』问题观察下面的加法算式&#xff1a;祥 瑞 生 辉 三 羊 献 瑞----------------三 羊 生 瑞 气其中&#xff0c;相同的汉字代表相同的数字&#xff0c;不同的汉字代表不同的数字&#xff0c;‘三’和‘祥’不…

倒果汁c语言,水果榨汁补维生素C?这些补维生素的错误别再犯了

原标题&#xff1a;水果榨汁补维生素C&#xff1f;这些补维生素的错误别再犯了蔬菜和水果作为维生素C、矿物质和植物纤维的重要来源&#xff0c;是每天餐桌上都要出现的食物&#xff0c;一旦水果蔬菜吃不够&#xff0c;身体就会开始找你麻烦。在处理蔬菜水果的时候&#xff0c;…

android 判断对象,Android网络判断知识小结

Android中判断当前网络是否可用应用场景&#xff1a;实现判断当前网络是否可用当前有可用网络&#xff0c;如下图&#xff1a;当前没有可用网络&#xff0c;如下图&#xff1a;实现步骤&#xff1a;1、获取ConnectivityManager对象Context context activity.getApplicationCon…

html选择器是什么,CSS3选择器是什么?

首先我们来看一下displaynone的意思是什么&#xff1f;display:none的意思&#xff1a;隐藏元素并脱离文档&#xff0c;流就是隐藏该区域&#xff0c;不占实际空间&#xff0c;但对后台来说真实存在&#xff0c;可以获取被隐藏的元素简单的来说就是将元素设置为none的时候既不会…

零基础学计算机408,又一所重点大学改考408!21计算机考研会全面408吗?

【北京工业大学】于7月17日发布《关于北京工业大学2021年全国硕士研究生招生考试部分考试科目及考试大纲调整的通知》&#xff0c;要点如下&#xff1a;文法学部0401教育学专业课改考 311统教育学信息学部计算机学院0812计算机科学与技术0839网络空间安全0854电子信息 (专业学位…

edge如何导入html文件收藏夹,edge浏览器收藏夹如何导入?edge浏览器收藏夹导入方法...

在使用浏览器的时候需要用户进行多方便的导入和使用&#xff0c;这样在数据共享和传递的时候才会更加的方便&#xff0c;那么这款软件要如何操作使用呢&#xff0c;有兴趣的用户可以使用手机快速申请使用&#xff0c;帮助用户的生活&#xff0c;让用户的生活更加的便捷&#xf…

中职生计算机专业600分,来了!超全盘点高职分类中500-600分及以上的高中生能报的专业和院校名单!...

福建高职分类考试志愿填报4月27日开始&#xff0c;招生计划不断更新中关注【福建高考】&#xff0c;免费使用志愿填报工具参加高职分类的同学们志愿填报在即&#xff0c;你定好目标了吗&#xff1f;本期&#xff0c;小编为大家盘点高职分类各分段的高中生能报哪些专业和大学~一…

华为手机怎么用计算机玩隐藏空间,玩法 | 华为手机这五个隐藏功能,用过的都说好!...

原标题&#xff1a;玩法 | 华为手机这五个隐藏功能&#xff0c;用过的都说好&#xff01;欢迎转载&#xff0c;请注明出处&#xff0c;抄袭必究&#xff01;近年来国产手机都很争气&#xff0c;华为、小米、OPPO、vivo都迅速的成长起来&#xff0c;让大家告别了疯抢苹果的时代。…

微型计算机简化结构,基于FPGA的简易微型计算机结构分析与实现

0 引言通常&#xff0c;人们对微型计算机的工作原理及硬件结构的了解来源于书本知识&#xff0c;深入理解掌握其功能特点比较困难&#xff0c;要自己亲手去做一个类似功能的微型计算机更是不可能。随着可编程逻辑器件的广泛应用&#xff0c;为数字系统的设计带来了极大的灵活性…

django 返回ajax html,Django 前台通过json 取出后台数据

前台通过json 取出后台数据步骤1:后台数据通过 JSON 序列化成字符串注意&#xff1a;1、json是1个字符串2、通过json.dumps(xxx) 序列化成 1个字符串的 字典对象views.pydef ajax(request):if request.methodPOST:print(request.POST)data{status:0,msg:请求成功,data:[11,22,3…

长春金桥计算机学校,金桥学校2017年招生简章

原标题&#xff1a;金桥学校2017年招生简章金桥学校创建于2000年5月&#xff0c;现有45个教学班&#xff0c;在校学生2700余人。近年来&#xff0c;学校以“培养高素质的现代中国人”为办学目标&#xff0c;坚持“德育为首、做人第一”的办学理念&#xff0c;积极改革创新&…