




版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
第如何利用java實(shí)現(xiàn)生成PDF文件目錄1.PDF文件簡(jiǎn)介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文件簡(jiǎn)介
PDF是可移植文檔格式,是一種電子文件格式,具有許多其他電子文檔格式無法相比的優(yōu)點(diǎn)。PDF文件格式可以將文字、字型、格式、顏色及獨(dú)立于設(shè)備和分辨率的圖形圖像等封裝在一個(gè)文件中。該格式文件還可以包含超文本鏈接、聲音和動(dòng)態(tài)影像等電子信息,支持特長(zhǎng)文件,集成度和安全可靠性都較高。在系統(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)目請(qǐng)?zhí)砑哟艘蕾?-
dependency
groupIdorg.springframework.boot/groupId
artifactIdspring-boot-starter-freemarker/artifactId
/dependency
!--非springboot項(xiàng)目請(qǐ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等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 個(gè)體身份認(rèn)同與自我價(jià)值重構(gòu)研究
- 團(tuán)隊(duì)管理考勤管理辦法
- 文本分析技術(shù)在地質(zhì)圖處理中的應(yīng)用與效果評(píng)估
- 公司并購(gòu)案例分析與策略討論
- 河南招聘安全管理辦法
- 團(tuán)隊(duì)人員協(xié)同管理辦法
- 生產(chǎn)調(diào)度與資源配置優(yōu)化策略研究
- 道德理性探析:疑與惑之間的關(guān)系
- 精神科護(hù)理工作中的風(fēng)險(xiǎn)因素識(shí)別與防范策略
- 合肥租賃公司管理辦法
- 生產(chǎn)經(jīng)營(yíng)單位事故隱患內(nèi)部報(bào)告獎(jiǎng)勵(lì)機(jī)制實(shí)踐與案例
- 2025年江西省金控科技產(chǎn)業(yè)集團(tuán)社會(huì)招聘4人(第一批次)筆試參考題庫(kù)附帶答案詳解
- 菜園開墾種植合同協(xié)議
- 紡織品紗線疵點(diǎn)分析與處理考核試卷
- AI賦能下的護(hù)理專業(yè)教育與培訓(xùn)革新
- 瓦楞紙板生產(chǎn)線操作機(jī)長(zhǎng)培訓(xùn)講義
- 2025電子病歷書寫基本規(guī)范
- 近五年遼寧中考英語真題及答案2024
- 全年病蟲害防治明細(xì)表
- 林權(quán)林地轉(zhuǎn)租協(xié)議書
- 碧桂園物業(yè)管家述職報(bào)告
評(píng)論
0/150
提交評(píng)論