這篇文章主要介紹“根據(jù)freemarker模板寫入數(shù)據(jù)并生成圖片的方法”,在日常操作中,相信很多人在根據(jù)freemarker模板寫入數(shù)據(jù)并生成圖片的方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”根據(jù)freemarker模板寫入數(shù)據(jù)并生成圖片的方法”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
贛縣網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)建站!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站開發(fā)等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營維護(hù)。創(chuàng)新互聯(lián)建站于2013年開始到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)建站。
需要使用到core-renderer-R8這個工具,加入以下依賴:
org.xhtmlrenderer core-renderer R8
工具類FtlUtil:
public class FtlUtil { private static String getTemplate(String template, Mapmap) throws IOException, TemplateException { Configuration cfg = new Configuration(Configuration.VERSION_2_3_30); String templatePath = FtlUtil.class.getResource("/").getPath() + "/templates"; cfg.setDirectoryForTemplateLoading(new File(templatePath)); cfg.setDefaultEncoding("UTF-8"); cfg.setTemplateExceptionHandler(TemplateExceptionHandler.RETHROW_HANDLER); cfg.setLogTemplateExceptions(false); Template temp = cfg.getTemplate(template); StringWriter stringWriter = new StringWriter(); temp.process(map, stringWriter); String result = stringWriter.getBuffer().toString(); stringWriter.flush(); stringWriter.close(); return result; } /** * 模板文件轉(zhuǎn)圖片 * @param template 模板文件地址 * @param map 數(shù)據(jù)map * @param tagPath 保存圖片地址 * @param width 圖片寬度 * @param height 圖片高度 * @throws Exception */ public static void turnImage(String template, Map map, String tagPath, int width, int height) throws Exception { String html = getTemplate(template, map); byte[] bytes = html.getBytes(); ByteArrayInputStream bin = new ByteArrayInputStream(bytes); DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); DocumentBuilder builder = factory.newDocumentBuilder(); Document document = builder.parse(bin); Java2DRenderer renderer = new Java2DRenderer(document, width, height); BufferedImage img = renderer.getImage(); ImageIO.write(img, "jpg", new File(tagPath)); } }
freemarker模板文件report.html:
報(bào)表模板 ${title}
<#list list as row> # <#list fieldNames as fieldNames>${fieldName} #list>#list> ${row_index + 1} <#list fields as field>${row[field]!''} #list>
調(diào)用FtlUtil.turnImage生成圖片:
Mapmap = new HashMap<>(); map.put("title", "測試報(bào)表"); // 標(biāo)題 map.put("fieldNames", fieldNames); // fieldNames是字段中文名 map.put("fields", fields); // fields是字段名 map.put("list", list); // list是數(shù)據(jù)列表 FtlUtil.turnImage("report.html", map, "result.jpg", 600, 700);
效果:
注意:
模板文件中的外部css和js是無法加載和起作用的,所以樣式要直接寫在模板文件中。
到此,關(guān)于“根據(jù)freemarker模板寫入數(shù)據(jù)并生成圖片的方法”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!