Spring Boot如何读取resource目录下文件呢?

重生 SpringBoot 发布时间:2024-02-03 09:36:03 阅读数:3847 1
下文笔者讲述读取resource目录下文件的方法及示例分享,如下所示
今天使用java读取resource目录下的文件失败,
    那么到底该如何读取resource目录下的文件呢?笔者将一一道来,如下所示
================================================
报错代码:
String templatePath = "/test/index.html";
 
ClassPathResource resource = new ClassPathResource(templatePath);
File file;
try {
    file = resource.getFile();
} catch (IOException e) {
    e.printStackTrace();
}  

正确的读取resource目录下文件的方法

String templatePath = "/test/index.html";

ClassPathResource resource = new ClassPathResource(templatePath);
BufferedInputStream bis = new BufferedInputStream(resource.getInputStream());
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaFramework/SpringBoot/202402/7900.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者