使用freemarker动态填充html并可转为图片
教程管理员 发布于2023-09-29 11:42 HTML教程 149
简介:
使用freemarker动态填充html并可转为图片
1. 引入依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-freemarker</artifactId> </dependency>
2. 模板html文件中将需要替换的地方使用占位符进行替换
- 使用占位符
${}
进行占位操作;
<div style="height: 17px;"> <span style="height: 100%; line-height: 17px;">姓名:</span> <span style="height: 100%; line-height: 17px;">${name}</span> </div>
3. 编写Util类
- 使用try (FileWriter writer = new FileWriter(targetHtmlPath)) { }来自动关闭流,避免手动释放;
- 将模板html文件放到starter目录下的resource里的templates包下即可;
public class GenHtmlUtil { public static void genNewHtml(String template, Map<String, Object> map, String targetHtmlPath) { try (FileWriter writer = new FileWriter(targetHtmlPath)) { Configuration configuration = new Configuration(Configuration.getVersion()); String templatePath = GenHtmlUtil.class.getResource("/").getPath() + "templates"; configuration.setDirectoryForTemplateLoading(new File(templatePath)); Template t = configuration.getTemplate(template); String content = FreeMarkerTemplateUtils.processTemplateIntoString(t, map); writer.write(content); writer.flush(); } catch (Exception e) { e.printStackTrace(); } } }
4. 调用Util
- 对第2步中使用
${}
进行占位的地方使用Map
进行填充,并调用Util;
Map<String, Object> map = Maps.newHashMap(); map.put("name", name); map.put("sex", sex); map.put("age", age); GenHtmlUtil.genNewHtml("template.html", map, "result.html");
然后就可在项目根目录下找到生成的名为"result.html"
的html
文件啦。
那么如何将生成的html文件转为图片文件呢?
- 上一篇:学习HTML笔记128
- 下一篇:正则 去除html标记
相关推荐
- 03-25 有创意的情人表白动态贺卡Office PPT免费模板背景素材下载
- 03-17 自己填充图片的大气欧美风商务工作汇报Office PPT免费模板背景素材下载
- 03-16 自己填充图片的星空背景大气欧美风Office PPT免费模板背景素材下载(100P)
- 03-16 嫦娥奔月——中秋佳节动态祝福贺卡Office PPT免费模板背景素材下载
- 03-08 清新简约图片应用商务Office PPT免费模板背景素材下载
- 03-06 贺年祝福卡酒红喜庆动态Office PPT免费模板背景素材下载
- 03-06 富贵金鱼闹新春动态新年Office PPT免费模板背景素材下载
- 03-02 自己填充图片大气欧美风商务工作汇报Office PPT免费模板背景素材下载
- 03-01 一份清新淡雅的PPT动态模板,以绿色花朵为背景,动态效果非常漂亮,附带抒情的背景音乐,可用于制作幻灯片目录。
- 02-24 动态彩色可爱儿童卡通PPT模板。一套精美可爱卡通风格幻灯片模板,多彩彩色配色,动态播放,页面类型丰富。
- 控制面板
- 友情链接
- 最近发表
-
- 涂鸦而不乱简约艺术主题Office PPT免费模板背景素材下载
- 有创意的情人表白动态贺卡Office PPT免费模板背景素材下载
- 绿色简约技能竞赛电力Office PPT免费模板背景素材下载
- 极简几何商务蓝年终总结汇报Office PPT免费模板背景素材下载
- 蓝橙简约商务年终总结汇报Office PPT免费模板背景素材下载
- 绿色清新教育风课堂教学通用Office PPT免费模板背景素材下载
- 潮流复古艺术感年终总结Office PPT免费模板背景素材下载
- 浅绿商务风工作总结报告Office PPT免费模板背景素材下载
- 大气简约时尚年终总结汇报Office PPT免费模板背景素材下载
- 喜庆春节风公司年终誓师表彰大会Office PPT免费模板背景素材下载
- 最新留言
-