struts2 + freemark + itext 导出pdf(基于模板方式)

2024-05-26 13:18

本文主要是介绍struts2 + freemark + itext 导出pdf(基于模板方式),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

生成静态页面方法:

private void statHtml(Product product){try{//初始化FreeMarker配置//创建一个Configuration实例cfg = new Configuration();cfg.setDirectoryForTemplateLoading(new File(ServletActionContext.getRequest().getSession().getServletContext().getRealPath("/")+"jsp\\product"));cfg.setEncoding(Locale.getDefault(), "utf-8");//创建模版对象Template t = cfg.getTemplate("look.html");t.setEncoding("utf-8");//生成静态String path = ServletActionContext.getRequest().getSession().getServletContext().getRealPath("/")+"jsp\\product";//在模版上执行插值操作,并输出到制定的输出流中File fileName = new File(path + "\\look1.html");Writer out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(fileName), "utf-8"));t.process(product, out);out.flush();out.close();}catch(Exception e){e.printStackTrace();}}导出pdf:public String downPdf() throws Exception{ITextRenderer renderer = new ITextRenderer();if(id > 0 && !"".equals(id)){product = productService.modProduct(id);statHtml(product);}String dest = ServletActionContext.getRequest().getSession().getServletContext().getRealPath("/")+"jsp\\product";String outputFile =dest+"\\"+ "报告" + ".pdf"; //定义输出文件全名File outFile = new File(outputFile);if (!outFile.exists()) {outFile.getParentFile().mkdirs();}OutputStream os = new FileOutputStream(outputFile);String path = dest+"\\look1.html";String url = new File(path).toURI().toURL().toString();// 解决中文支持问题ITextFontResolver fontResolver = renderer.getFontResolver();fontResolver.addFont(dest +"\\arialuni.ttf", BaseFont.IDENTITY_H,BaseFont.NOT_EMBEDDED);renderer.setDocument(url);renderer.layout();renderer.createPDF(os);os.flush();os.close();return SUCCESS;}private InputStream pdfStream;   private String pdfName;   给出get,set方法


xml配置:

<action name="downPdf" class="com.mobile.action.product.ProductAction" method="downPdf"><result name="success" type="stream"><param name="contentType">application/pdf; charset=gb2312</param><param name="inputName">pdfStream</param><param name="contentDisposition">attachment; filename="${pdfName}"</param><param name="bufferSize">4096</param></result></action>

html 模板:

<!DOCTYPE html>
<html><head><meta http-equiv="content-type" content="text/html; charset=UTF-8"></meta><style type="text/css">@page {size: A4 landscape;}h1{font-size:16px;text-align:center}table{width:100%;border-collapse:collapse;table-layout:fixed}table th,table td{border:1px solid gray;text-align:center;font-size:12px;padding:3px;font-weight:normal}table.signature td{border:0}p,ul li{line-height:1.5em}span.hl{color:red}#report-item-notes{list-style:none}#report-item-notes ol{list-style:none}</style></head><body style="font-family:'Arial Unicode MS'"> 必须加这个样式,style 样式要写在 head 里面<h1>产品信息</h1><table><tbody><tr><th>产品名称:</th><th>产品价格:</th></tr><tr><td>${productName}</td><td>${productPrice}</td></tr></tbody></table></body>
</html>


这篇关于struts2 + freemark + itext 导出pdf(基于模板方式)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1004568

相关文章

poj3468(线段树成段更新模板题)

题意:包括两个操作:1、将[a.b]上的数字加上v;2、查询区间[a,b]上的和 下面的介绍是下解题思路: 首先介绍  lazy-tag思想:用一个变量记录每一个线段树节点的变化值,当这部分线段的一致性被破坏我们就将这个变化值传递给子区间,大大增加了线段树的效率。 比如现在需要对[a,b]区间值进行加c操作,那么就从根节点[1,n]开始调用update函数进行操作,如果刚好执行到一个子节点,

C++11第三弹:lambda表达式 | 新的类功能 | 模板的可变参数

🌈个人主页: 南桥几晴秋 🌈C++专栏: 南桥谈C++ 🌈C语言专栏: C语言学习系列 🌈Linux学习专栏: 南桥谈Linux 🌈数据结构学习专栏: 数据结构杂谈 🌈数据库学习专栏: 南桥谈MySQL 🌈Qt学习专栏: 南桥谈Qt 🌈菜鸡代码练习: 练习随想记录 🌈git学习: 南桥谈Git 🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈�

【专题】2024飞行汽车技术全景报告合集PDF分享(附原数据表)

原文链接: https://tecdat.cn/?p=37628 6月16日,小鹏汇天旅航者X2在北京大兴国际机场临空经济区完成首飞,这也是小鹏汇天的产品在京津冀地区进行的首次飞行。小鹏汇天方面还表示,公司准备量产,并计划今年四季度开启预售小鹏汇天分体式飞行汽车,探索分体式飞行汽车城际通勤。阅读原文,获取专题报告合集全文,解锁文末271份飞行汽车相关行业研究报告。 据悉,业内人士对飞行汽车行业

内核启动时减少log的方式

内核引导选项 内核引导选项大体上可以分为两类:一类与设备无关、另一类与设备有关。与设备有关的引导选项多如牛毛,需要你自己阅读内核中的相应驱动程序源码以获取其能够接受的引导选项。比如,如果你想知道可以向 AHA1542 SCSI 驱动程序传递哪些引导选项,那么就查看 drivers/scsi/aha1542.c 文件,一般在前面 100 行注释里就可以找到所接受的引导选项说明。大多数选项是通过"_

pdfmake生成pdf的使用

实际项目中有时会有根据填写的表单数据或者其他格式的数据,将数据自动填充到pdf文件中根据固定模板生成pdf文件的需求 文章目录 利用pdfmake生成pdf文件1.下载安装pdfmake第三方包2.封装生成pdf文件的共用配置3.生成pdf文件的文件模板内容4.调用方法生成pdf 利用pdfmake生成pdf文件 1.下载安装pdfmake第三方包 npm i pdfma

poj 1258 Agri-Net(最小生成树模板代码)

感觉用这题来当模板更适合。 题意就是给你邻接矩阵求最小生成树啦。~ prim代码:效率很高。172k...0ms。 #include<stdio.h>#include<algorithm>using namespace std;const int MaxN = 101;const int INF = 0x3f3f3f3f;int g[MaxN][MaxN];int n

uva 1342 欧拉定理(计算几何模板)

题意: 给几个点,把这几个点用直线连起来,求这些直线把平面分成了几个。 解析: 欧拉定理: 顶点数 + 面数 - 边数= 2。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#inc

uva 11178 计算集合模板题

题意: 求三角形行三个角三等分点射线交出的内三角形坐标。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vector>#include <

用命令行的方式启动.netcore webapi

用命令行的方式启动.netcore web项目 进入指定的项目文件夹,比如我发布后的代码放在下面文件夹中 在此地址栏中输入“cmd”,打开命令提示符,进入到发布代码目录 命令行启动.netcore项目的命令为:  dotnet 项目启动文件.dll --urls="http://*:对外端口" --ip="本机ip" --port=项目内部端口 例: dotnet Imagine.M

poj 2104 and hdu 2665 划分树模板入门题

题意: 给一个数组n(1e5)个数,给一个范围(fr, to, k),求这个范围中第k大的数。 解析: 划分树入门。 bing神的模板。 坑爹的地方是把-l 看成了-1........ 一直re。 代码: poj 2104: #include <iostream>#include <cstdio>#include <cstdlib>#include <al