版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
第如何利用java實(shí)現(xiàn)生成PDF文件目錄1.PDF文件簡介2.生成PDF2.1基于freemarker框架實(shí)現(xiàn)HTML轉(zhuǎn)PDF2.1.1引入jar包依賴:2.1.2創(chuàng)建html模板test_template:2.1.3獲取HTML內(nèi)容2.1.4生成PDF文檔總結(jié)
1.PDF文件簡介
PDF是可移植文檔格式,是一種電子文件格式,具有許多其他電子文檔格式無法相比的優(yōu)點(diǎn)。PDF文件格式可以將文字、字型、格式、顏色及獨(dú)立于設(shè)備和分辨率的圖形圖像等封裝在一個(gè)文件中。該格式文件還可以包含超文本鏈接、聲音和動態(tài)影像等電子信息,支持特長文件,集成度和安全可靠性都較高。在系統(tǒng)開發(fā)中通常用來生成比較正式的報(bào)告或者合同類的電子文檔。
2.生成PDF
2.1基于freemarker框架實(shí)現(xiàn)HTML轉(zhuǎn)PDF
2.1.1引入jar包依賴:
dependency
groupIdjectlombok/groupId
artifactIdlombok/artifactId
version1.18.20/version
/dependency
!--/artifact/com.itextpdf/html2pdf--
dependency
groupIdcom.itextpdf/groupId
artifactIdhtml2pdf/artifactId
version4.0.3/version
/dependency
!--springboot項(xiàng)目請?zhí)砑哟艘蕾?-
dependency
groupIdorg.springframework.boot/groupId
artifactIdspring-boot-starter-freemarker/artifactId
/dependency
!--非springboot項(xiàng)目請?zhí)砑哟艘蕾?-
dependency
groupIdorg.freemarker/groupId
artifactIdfreemarker/artifactId
version2.3.30/version
/dependency
2.1.2創(chuàng)建html模板test_template:
!DOCTYPEhtml
htmllang="en"
head
metacharset="UTF-8"/
titleTitle/title
style
body{font-family:SimSun;}
.title{align-content:center;text-align:center;}
.signature{float:right}
/style
/head
body
div
h1標(biāo)題/h1
h4副標(biāo)題/h4
span當(dāng)前時(shí)間:${date_time}/span
div日期:${date}/div
/div
/body
/html
2.1.3獲取HTML內(nèi)容
當(dāng)HTML模板存放在系統(tǒng)文件夾
StringtemplateDirectory="D:\\";//系統(tǒng)文件夾路徑如:D:\
當(dāng)HTML模板存放在項(xiàng)目resources/templates目錄
ClassLoaderclassLoader=PdfUtilTest.class.getClassLoader();
URLresource=classLoader.getResource("templates");
StringtemplateDirectory=resource.toURI().getPath();
示例代碼:
importcom.itextpdf.html2pdf.ConverterProperties;
importcom.itextpdf.html2pdf.HtmlConverter;
importcom.itextpdf.layout.font.FontProvider;
importfreemarker.template.Configuration;
importfreemarker.template.Template;
importlombok.extern.slf4j.Slf4j;
importjava.io.*;
import.URL;
importjava.time.LocalDateTime;
importjava.time.format.DateTimeFormatter;
importjava.util.HashMap;
importjava.util.Map;
@Slf4j
publicclassPdfUtilTest{
*獲取模板內(nèi)容
*@paramtemplateDirectory模板文件夾
*@paramtemplateName模板文件名
*@paramparamMap模板參數(shù)
*@return
*@throwsException
privatestaticStringgetTemplateContent(StringtemplateDirectory,StringtemplateName,MapString,ObjectparamMap)throwsException{
Configurationconfiguration=newConfiguration(Configuration.DEFAULT_INCOMPATIBLE_IMPROVEMENTS);
try{
configuration.setDirectoryForTemplateLoading(newFile(templateDirectory));
}catch(Exceptione){
System.out.println("--exception--");
Writerout=newStringWriter();
Templatetemplate=configuration.getTemplate(templateName,"UTF-8");
cess(paramMap,out);
out.flush();
out.close();
returnout.toString();
publicstaticvoidmain(String[]args)throwsException{
MapString,ObjectparamMap=newHashMap();
DateTimeFormatterdateTimeFormatter=DateTimeFormatter.ofPattern("yyyy-MM-ddHH:mm:ss");
paramMap.put("date_time",dateTimeFormatter.format(LocalDateTime.now()));
paramMap.put("date",dateTimeFormatter.format(LocalDateTime.now()).substring(0,10));
ClassLoaderclassLoader=PdfUtilTest.class.getClassLoader();
URLresource=classLoader.getResource("templates");
StringtemplateDirectory=resource.toURI().getPath();
StringtemplateContent=PdfUtilTest.getTemplateContent(templateDirectory,"test_template.html",paramMap);
System.out.println(templateContent);
2.1.4生成PDF文檔
示例代碼:
/**
*HTML轉(zhuǎn)PDF
*@paramcontenthtml內(nèi)容
*@paramoutPath輸出pdf路徑
*@return是否創(chuàng)建成功
publicstaticbooleanhtml2Pdf(Stringcontent,StringoutPath){
try{
ConverterPropertiesconverterProperties=newConverterProperties();
converterProperties.setCharset("UTF-8");
FontProviderfontProvider=newFontProvider();
fontProvider.addSystemFonts();
converterProperties.setFontProvider(fontProvider);
HtmlConverter.convertToPdf(content,newFileOutputStream(outPath),converterProperties);
}catch(Exceptione){
log.error("生成模板內(nèi)容失敗,{}",e);
returnfalse;
returntrue;
*HTML轉(zhuǎn)PDF
*@paramcontenthtml內(nèi)容
*@returnPDF字節(jié)數(shù)組
publicstaticbyte[]html2Pdf(Stringcontent){
ByteArrayOutputStreamoutputStream=newByteArrayOutputStream();;
try{
ConverterPropertiesconverterProperties=newConverterProperties();
converterProperties.setCharset("UTF-8");
FontProviderfontProvider=newFontProvider();
fontProvider.addSystemFonts();
converterProperties.setFontProvider(fontProvider);
HtmlConverter.convertToPdf(content,outputStream,converterProperties);
}catch(Exceptione){
log.error("生成PDF失敗,{}",e);
returnoutputStream.toByteArray();
publicstaticvoidmain(String[]args)throwsException{
MapString,ObjectparamMap=newHashMap();
DateTimeFormatterdateTimeFormatter=DateTimeFormatter.ofPattern("yyyy-MM-ddHH:mm:ss");
paramMap.put("date_time",dateTimeFormatter.format(LocalDateTime.now()));
paramMap.put("date",dateTimeFormatter.format(LocalDate
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 國培計(jì)劃培訓(xùn)制度
- 案場物業(yè)培訓(xùn)制度
- 職業(yè)培訓(xùn)實(shí)操室管理制度
- 會議制度培訓(xùn)制度
- 局培訓(xùn)管理制度
- 幼兒園教師游戲培訓(xùn)制度
- 化工培訓(xùn)教育制度
- 護(hù)理操作培訓(xùn)制度
- 教育培訓(xùn)機(jī)構(gòu)晨會制度
- 防欺凌培訓(xùn)制度
- 2025年度麻醉科主任述職報(bào)告
- 產(chǎn)品故障分析報(bào)告
- 公司外來參觀人員安全須知培訓(xùn)課件
- 手術(shù)室查對制度
- 第三次全國國土調(diào)查工作分類與三大類對照表
- 農(nóng)村集貿(mào)市場改造項(xiàng)目實(shí)施方案
- 消防設(shè)施檢查記錄表
- 酒店協(xié)議價(jià)合同
- 哈爾濱工業(yè)大學(xué)簡介宣傳介紹
- 中國兒童錯(cuò)頜畸形早期矯治專家共識
- GB/T 5147-2003漁具分類、命名及代號
評論
0/150
提交評論