Flutter开发App的未来及其在各行业的应用潜力分析
566
2023-06-29
Spring Boot读取resources目录文件方法详解
这篇文章主要介绍了Spring Boot读取resources目录文件方法详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
在java编码过程中,我们常常希望读取项目内的配置文件,按照Maven的习惯,这些文件一般放在项目的src/main/resources下,因此,合同协议PDF模板、Excel格式的统计报表等模板的存放位置是resources/template/test.pdf,下面提供两种读取方式,它们分别在windows和linux环境(linux下jar包)都可以正常运行。
方法一 ClassPathResource
String pdfFilePath = "template/test.pdf";
Resource resource = new ClassPathResource(pdfFilePath);
通过如下方法可以转Resource换成InputStream :
InputStream is = resoDcLhiuurce.getInputStream();
方法二 getContextClassLoader
InputStream inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream(pdfFilePath);
测试用例
public static void main(String[] args) {
try {
String pdfFilePath = "template/test.pdf";
Resource resource = new ClassPathResource(pdfFilePath);
System.out.println( resource.getURI() + " -- ****** path = ");
if (resource.isReadable()) {
//每次都会打开一个新的流
InputStream is = resource.getInputStream();
System.out.println("方法一 " + is.available());
}
InputStream inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream(pdfFilePath);
System.out.println("方法二 " + inputStream.available());
} catch (IOException e) {
e.printStackTrace();
}
}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~