freemarker動態生成word並將生成的word轉為PDF,openoffice轉換word亂碼

来源:https://www.cnblogs.com/liran123/archive/2019/04/26/10772357.html
-Advertisement-
Play Games

freemarker動態生成word並將生成的word轉為PDF,openoffice轉換word亂碼 ...


之前項目有個需求,需要先動態生成word內容,然後再預覽生成word的內容(不能修改).整理一下,方便以後使用.

網上參考了好多大神的博客.具體也忘了參考誰的了,如有侵權,請告知修改.

思路一:

將目標word文件另存為xml文件,將裡面的需要動態生成的內容用freemarker的表達式${}替換.

用freemarker生成word的工具類,動態生成word. 這樣生成的word實際上是xml文件,用辦公軟體能正常打開使用.

但是轉PDF的時候發現轉不成功.轉過之後的PDF顯示的不是word的格式字元,而是像xml文件的標簽及字元,失敗!

思路二:

word的docx文件其實屬於zip的一種. 這裡只需要對它的核心內容部分進行操作.其他數據不動.具體做法為:

1.用辦公軟體(wps/office)打開模板文件,將需要修改的內容,用freemarker的表達式${}替換.

(註意:需要迴圈展示的內容還需要在xml文件中處理)如下:

 

 

2.將模板docx文件重命名為.zip的壓縮文件.

3.用解壓工具打開,取出word/document.xml 文件.

 

 

4.此時用文本工具打開document.xml,內容不太好看,將文件格式化一下.(我這裡沒找到好的格式化工具,使用notepad沒格好,最後用idea還行).格式化後如下.

 

 

5.在xml中需要迴圈的內容前增加如下標簽:

 

 

6.說明

word中要填充的數據為map格式,${}中為map的key.如果還需要迴圈填充可以如下操作:

map1   map2   list

map1.put("userName",name);

list.add(map1);

map2.put("list",list);

map2.put("title",title);

map2即為要填充的所有數據.這樣給list一個別名listKey 後,${}中如下填寫即可.

 

 

7.將模板文件與xml文件保存到一個固定位置.我這裡保存到了項目中:

 

 

8.準備工作完成,生成word工具類如下:

import freemarker.template.TemplateException;

import java.io.*;
import java.util.Enumeration;
import java.util.Map;
import java.util.zip.ZipEntry;
import java.util.zip.ZipException;
import java.util.zip.ZipFile;
import java.util.zip.ZipOutputStream;

/**
* 其實docx屬於zip的一種,這裡只需要操作word/document.xml中的數據,其他的數據不用動
*
* @author
*
*/
public class XmlToDocx {

/**
*
* @param xmlTemplate xml的文件名
* @param docxTemplate docx的路徑和文件名
* @param xmlTemp 填充完數據的臨時xml
* @param toFilePath 目標文件名
* @param map 需要動態傳入的數據
* @throws IOException
* @throws TemplateException
*/
public static void toDocx(String xmlTemplate,String docxTemplate,String xmlTemp ,String toFilePath,Map map) {
try {
// 1.map是動態傳入的數據
// 這個地方不能使用FileWriter因為需要指定編碼類型否則生成的Word文檔會因為有無法識別的編碼而無法打開
Writer w1 = new OutputStreamWriter(new FileOutputStream(xmlTemp), "gb2312");
// 2.把map中的數據動態由freemarker傳給xml
XmlTplUtil.process(xmlTemplate, map, w1);
// 3.把填充完成的xml寫入到docx中
XmlToDocx xtd = new XmlToDocx();
xtd.outDocx(new File(xmlTemp), docxTemplate, toFilePath);
}catch (Exception e) {
e.printStackTrace();
}
}
/**
*
* @param documentFile 動態生成數據的docunment.xml文件
* @param docxTemplate docx的模板
* @param toFilePath 需要導出的文件路徑
* @throws ZipException
* @throws IOException
*/

public void outDocx(File documentFile, String docxTemplate, String toFilePath) throws ZipException, IOException {

try {
File docxFile = new File(docxTemplate);
ZipFile zipFile = new ZipFile(docxFile);
Enumeration<? extends ZipEntry> zipEntrys = zipFile.entries();
ZipOutputStream zipout = new ZipOutputStream(new FileOutputStream(toFilePath));
int len = -1;
byte[] buffer = new byte[1024];
while (zipEntrys.hasMoreElements()) {
ZipEntry next = zipEntrys.nextElement();
InputStream is = zipFile.getInputStream(next);
// 把輸入流的文件傳到輸出流中 如果是word/document.xml由我們輸入
zipout.putNextEntry(new ZipEntry(next.toString()));
if ("word/document.xml".equals(next.toString())) {
InputStream in = new FileInputStream(documentFile);
while ((len = in.read(buffer)) != -1) {
zipout.write(buffer, 0, len);
}
in.close();
} else {
while ((len = is.read(buffer)) != -1) {
zipout.write(buffer, 0, len);
}
is.close();
}
}
zipout.close();

} catch (Exception e) {
e.printStackTrace();
}
}
}
9.生成PDF工具類


import com.artofsolving.jodconverter.DocumentConverter;
import com.artofsolving.jodconverter.openoffice.connection.OpenOfficeConnection;
import com.artofsolving.jodconverter.openoffice.connection.SocketOpenOfficeConnection;
import com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter;
import org.apache.poi.xwpf.converter.pdf.PdfConverter;
import org.apache.poi.xwpf.converter.pdf.PdfOptions;
import org.apache.poi.xwpf.usermodel.XWPFDocument;

import java.io.*;


public class XMlToDoc {

/**
* 生成pdf
*/
public static String makePdfByXcode(String docx) {
String filename = null;
File outFile = null;
try {

// document.setParagraph(new Pa );
if (docx.contains(".docx")) {
XWPFDocument document=new XWPFDocument(new FileInputStream(new File(docx)));
outFile=new File(docx.replace(".docx",".pdf"));
filename=docx.replace(".docx",".pdf");

outFile.getParentFile().mkdirs();
OutputStream out=new FileOutputStream(outFile);
// IFontProvider fontProvider = new AbstractFontRegistry();
PdfOptions options= PdfOptions.create(); //gb2312
PdfConverter.getInstance().convert(document,out,options);

} else {
File inputFile = new File(docx);
outFile = new File(docx.replace(".doc", ".pdf"));
filename = docx.replace(".doc", ".pdf");
outFile.getParentFile().mkdirs();

OpenOfficeConnection connection = new SocketOpenOfficeConnection(8100);
connection.connect();

// convert
DocumentConverter converter = new OpenOfficeDocumentConverter(connection);
converter.convert(inputFile, outFile);

// close the connection
connection.disconnect();
}


}catch (IllegalArgumentException e){
System.err.println("未知文件格式");
}
catch (Exception e) {
e.printStackTrace();
}
return filename;

}


}
import freemarker.template.Configuration;
import freemarker.template.Template;
import freemarker.template.TemplateException;

import java.io.File;
import java.io.IOException;
import java.io.Writer;
import java.util.Map;

public class XmlTplUtil {

private static XmlTplUtil tplm = null;
private Configuration cfg = null;

private XmlTplUtil() {
cfg = new Configuration();
try {
// 註冊tmlplate的load路徑
// 這的路徑是xml的路徑
String pathName = XmlTplUtil.class.getClassLoader().getResource("").getPath();
String path = pathName.substring(1, pathName.lastIndexOf("/"));
String parentPath1 = new File(path).getParent();//獲取項目的上一級目錄
String parentPath2 = new File(parentPath1).getParent();//獲取項目的上一級目錄
String xmlPath = parentPath2 + "/static/excelModel";
cfg.setDirectoryForTemplateLoading(new File(xmlPath));
} catch (Exception e) {
e.printStackTrace();
}
}

private static Template getTemplate(String name) throws IOException {
if (tplm == null) {
tplm = new XmlTplUtil();
}
Template template = tplm.cfg.getTemplate(name);
return template;
}

/**
*
* @param templatefile 模板文件
* @param param 需要填充的內容
* @param out 填充完成輸出的文件
* @throws IOException
* @throws TemplateException
*/
public static void process(String templatefile, Map param, Writer out) throws IOException, TemplateException {
// 獲取模板
Template template = XmlTplUtil.getTemplate(templatefile);
template.setOutputEncoding("GBK");
// 合併數據
template.process(param, out);
if (out != null) {
out.close();
}
}
}
註意:生成PDF需要安裝openoffice 軟體,安裝完成後,

cd openoffice目錄下有個OpenOffice 4\program

然後輸入命令

  soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard 

就ok了.

10.用到的maven包

<dependency>
<groupId>com.artofsolving</groupId>
<artifactId>jodconverter</artifactId>
<version>2.2.1</version>
</dependency>
<!--openoffice-->
<dependency>
<groupId>org.openoffice</groupId>
<artifactId>jurt</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.openoffice</groupId>
<artifactId>ridl</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.openoffice</groupId>
<artifactId>juh</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.openoffice</groupId>
<artifactId>unoil</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>fr.opensagres.xdocreport</groupId>
<artifactId>org.apache.poi.xwpf.converter.pdf</artifactId>
<version>1.0.6</version>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.22</version>
</dependency>
---------------------
作者:菜鳥-也-想飛
來源:CSDN
原文:https://blog.csdn.net/qq_21306669/article/details/84313569

註意:springboot打成jar無法放入webapp下生成,


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.第一步,這是目錄結構 2.接下來是build/webpack.dev.conf.js文件需要配置的內容 代碼: //vue配置請求本地json數據const express = require('express')const app = express()const appData = requ ...
  • 有一次我們說到擲骰子那個游戲,當時是用了一個steps屬性+雪碧圖來製作幀動畫,這當然頗為不錯,但其實一開始我想的不是這樣的,我想的是用真的3d和動畫去做,這個方案涉及到不少空間的知識,今天來給大伙好好說說,這css 3d到底怎麼玩。 先上效果圖: 基本思路:三層結構:視角容器>>載體>>具體3d圖 ...
  • 構造函數-->原型 >prototype-->__proto__-->constructor-->原型鏈 構造函數 什麼是構造函數?我理解構造函數就是可以用來生成實例的函數。 上面的代碼,f是函數Func new出來的實例,f是函數Func的實例,所以Func被稱為構造函數。那麼 Func的構造函數 ...
  • 本章主要介紹與Vue.js有關的一些概念與技術,並幫助你瞭解它們背後相關的工作原理。通過對本章的學習,即使從未接觸過Vue.js,你也可以運用這些知識點快速構建出一個Vue.js應用。1.1 Vue.js 是什麼Vue.js的官方文檔中是這樣介紹它的:簡單小巧的、漸進式JavaScript框架,是以... ...
  • 在創建store時, ,除了reducer函數,初始狀態,還可以傳入 。這個enhancer在createStore的源碼中是這樣使用的 它可以接受createStore方法併進行 自定義改裝 ,然後再使用改裝後的方法創建倉庫。 而redux官方提供的enhancer就只有 。 applyMiddl ...
  • 實現物體的旋轉、跳動以及場景陰影的開啟與優化,本程式將創建一個場景,並實現物體的動畫效果 ...
  • 定義: 定義了一種一對多的依賴關係,讓多個觀察者對象同時監聽某一個主題對象。這個主題對象在狀態發生變化時,會通知所有觀察者對象,使他們能夠自動更新自己。 結構:(書中圖,侵刪) 一個抽象的觀察者介面,擁有一個更新方法 若幹個具體的觀察者類 一個抽象的subject類,包含一個抽象觀察者的集合,並擁有 ...
  • [TOC] 引入 假設有一個司機, 需要到某個城市, 於是我們給他一輛汽車 如果我們希望給到這個司機的始終是一輛車, 應該怎麼做? (單例) 首先我們不能讓司機自己通過 產生一輛汽車, 而是應該通過調用 類中的某個方法對外提供車.   簡單工廠 下麵考慮, 如果我們不希望只有汽車這種交通工 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...