Spirngboot读取html文件到字符串

2023-10-15 19:33:20 浏览数 (1)

一、引入依赖

代码语言:javascript复制
        <dependency>
            <groupId>cn.hutool</groupId>
            <artifactId>hutool-all</artifactId>
            <version>5.3.5</version>
        </dependency>

二、直接读取返回

代码语言:javascript复制
    public String getContent(String path){
        try {
            File file = ResourceUtils.getFile("classpath:" path);    //获取项目路径中的文件
            return FileReader.create(file).readString();           //读取字符串
        } catch (FileNotFoundException e) {
            throw new RuntimeException(e);
        }
    }

0 人点赞