一檀蹋、導(dǎo)出工具類
傳入?yún)?shù)為需要渲染的數(shù)據(jù)内狸,以及模板的位置。
需要準(zhǔn)備好字體文件舌胶,同項(xiàng)目一起打包捆蜀。可以在”控制面板\外觀和個(gè)性化\字體“中找到想要的字體
其中工具類傳入的參數(shù)示例為:
List<QuestionExportVO> questionExportVOList = new ArrayList<>();
Map<String, Object> data = new HashMap<>();
data.put("questionExportVOList", questionExportVOList);
baos = PDFTemplateUtil.createPDF(data, "QuestionReplyDetails.ftl");
public class PDFTemplateUtil {
/**
* 通過模板導(dǎo)出pdf文件
*
* @param data 數(shù)據(jù)
* @throws Exception
*/
public static ByteArrayOutputStream createPDF(Object data, String templateName) throws Exception {
// 創(chuàng)建一個(gè)FreeMarker實(shí)例, 負(fù)責(zé)管理FreeMarker模板的Configuration實(shí)例
Configuration cfg = new Configuration(Configuration.DEFAULT_INCOMPATIBLE_IMPROVEMENTS);
// 指定FreeMarker模板文件的位置
cfg.setClassForTemplateLoading(PDFTemplateUtil.class, "/templates");
ITextRenderer renderer = new ITextRenderer();
try (ByteArrayOutputStream out = new ByteArrayOutputStream()) {
// 設(shè)置 css中 的字體樣式(暫時(shí)僅支持宋體和黑體) 必須幔嫂,不然中文不顯示
renderer.getFontResolver().addFont("/templates/font/simsun.ttc", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
renderer.getFontResolver().addFont("/templates/font/calibrib.ttf", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
// 設(shè)置模板的編碼格式
cfg.setEncoding(Locale.CHINA, "UTF-8");
// 獲取模板文件
Template template = cfg.getTemplate(templateName, "UTF-8");
StringWriter writer = new StringWriter();
// 將數(shù)據(jù)輸出到html中
template.process(data, writer);
writer.flush();
String html = writer.toString();
// 把html代碼傳入渲染器中
renderer.setDocumentFromString(html);
renderer.layout();
renderer.createPDF(out, false);
renderer.finishPDF();
out.flush();
return out;
}
}
}
二辆它、配置模板
根據(jù)需求畫出想要的界面,注意并不是html履恩,而是ftl格式(可以先畫一個(gè)html锰茉,畫出想要的格式后,再改造成ftl)切心。
其中有很多ftl格式才有的標(biāo)簽飒筑,用于實(shí)現(xiàn)數(shù)據(jù)渲染≌阑瑁可以做到動(dòng)態(tài)增加表格协屡,比如:
<#list detail.images as image>
<#if image ??>
<img style="width: 99%;padding-left: 2px;padding-top: 2px;" src="${image}" alt="image"/>
</#if>
</#list>
<#list detail.images as image>代表在集合中循環(huán)操作,??代表如果對(duì)象存在(不為null)的話
${(child.conclusion)!''}
則代表如果為null的時(shí)候全谤,則用空字符串作為默認(rèn)輸出值
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title></title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: SimSun;
padding: 30px 20px 0;
}
section {
display: block;
}
.preface p {
line-height: 30px;
display: inline-block;
}
section > table {
page-break-inside: auto;
-fs-table-paginate: paginate;
border-spacing: 0;
cellspacing: 0;
cellpadding: 0;
border-collapse: collapse;
table-layout: fixed;
width: 100%;
font-size: 13px;
text-align: left;
word-wrap: break-word;
}
section table td {
padding: 5px 0;
}
section table tr {
page-break-inside: avoid;
page-break-after: auto;
}
.topTitle section {
width: 30%;
font-size: 13px;
display: inline-block;
margin-top: 20px;
}
.outTitle section {
font-size: 13px;
display: inline-block;
}
.detail {
margin-top: 20px;
}
.box3 img {
width: 100%;
}
.box3 p {
font-size: 12px;
}
img {
width: 50%;
}
</style>
</head>
<body>
<#if questionExportVOList ??>
<section class="detail">
<table border="1" cellspacing="0" cellpadding="0">
<#list questionExportVOList as data>
<tr style="font-weight: bold;font-size: 14px;text-align: center;">
<td colspan="2" width="100%">問題歸屬成果:${(data.stageOutcomeName)!''}</td>
</tr>
<#list data.questionDetails as detail>
<tr>
<td colspan="2" width="100%" style="font-family: Calibri;font-weight: bold;font-size: 12px;background-color:yellow;"> ${(detail.serialNumber)!''}</td>
</tr>
<tr>
<th rowspan="7">
<#list detail.images as image>
<#if image ??>
<img style="width: 99%;padding-left: 2px;padding-top: 2px;" src="${image}" alt="image"/>
</#if>
</#list>
</th>
<td><b style="font-size: 12px;">問題所屬圖紙或模型:</b>${(detail.fileName)!''}</td>
</tr>
<tr>
<td><b style="font-size: 12px;">問題標(biāo)題:</b>${(detail.questionTitle)!''}</td>
</tr>
<tr>
<td><b style="font-size: 12px;">問題描述:</b>${(detail.questionDesc)!''}</td>
</tr>
<tr>
<td>專業(yè):${(detail.major)!''}</td>
</tr>
<tr>
<td>知悉人員:${(detail.knowingStaff)!''}</td>
</tr>
<tr>
<td>主責(zé)人員:${(detail.participants)!''}</td>
</tr>
<tr>
<td>上傳附件:${(detail.attachmentName)!''}</td>
</tr>
<#if detail.children ??>
<#list detail.children as child>
<tr style="font-weight: bold;font-size: 12px;">
<td colspan="2" width="100%">${(child.operate)!''}</td>
</tr>
<#if child.conclusion ??>
<tr>
<td>復(fù)核人員:${(child.createBy)!''}</td>
<#if child.conclusion == "同意">
<td>復(fù)核結(jié)論:<b style="color: green;">${(child.conclusion)!''}</b></td>
<#else >
<td>復(fù)核結(jié)論:<b style="color: red;">${(child.conclusion)!''}</b></td>
</#if>
</tr>
<#else >
<tr>
<td colspan="2" width="100%">回復(fù)人員:${(child.createBy)!''}</td>
</tr>
</#if>
<#if child.replyContent ??>
<tr>
<td colspan="2" width="100%">${(child.replyContent)!''}</td>
</tr>
</#if>
</#list>
</#if>
</#list>
</#list>
</table>
</section>
</#if>
</body>
</html>