这里写目录标题
- 第一章
- 1.1)pom中引入依赖和html文件示例
- 1.2)使用hutool工具包读取html文件转为string
- 1.3)页面显示
第一章
1.1)pom中引入依赖和html文件示例
引入hutool工具包依赖
<dependency><groupId>cn.hutool</groupId><artifactId>hutool-all</artifactId><version>5.6.2</version></dependency>
html文件路径../SpringBootTest/001-test/content.html
:
<html>
<body>
<h2>工作整改</h2>
</body><head><style> .bold-red {color: red;font-weight: bold;}</style>
</head>
<body><p>各位:</p>
<p>本周安全管理工作安排:</p>
<p>重点关注附件<span class="bold-red">完成整改工作</span></p>
<p>加油</p>
</body>
</html>
1.2)使用hutool工具包读取html文件转为string
@Slf4j
@Controller
public class ControllerTest {//http://localhost:9001/001-test/springBoot/test@RequestMapping(value = "/springBoot/test")@ResponseBodypublic String say() {try {File content = ResourceUtils.getFile("../SpringBootTest/001-test/content.html");return FileReader.create(content).readString();} catch (FileNotFoundException e) {log.error("0.0", e);}return "没有读取到html文件";}}