Spring Boot读取resources目录文件方法详解
这篇文章主要介绍了SpringBoot读取resources目录文件方法详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
在Java编码过程中,我们常常希望读取项目内的配置文件,按照Maven的习惯,这些文件一般放在项目的src/main/resources下,因此,合同协议PDF模板、Excel格式的统计报表等模板的存放位置是resources/template/test.pdf,下面提供两种读取方式,它们分别在windows和Linux环境(linux下jar包)都可以正常运行。
方法一ClassPathResource
StringpdfFilePath="template/test.pdf"; Resourceresource=newClassPathResource(pdfFilePath);
通过如下方法可以转Resource换成InputStream:
InputStreamis=resource.getInputStream();
方法二getContextClassLoader
InputStreaminputStream=Thread.currentThread().getContextClassLoader().getResourceAsStream(pdfFilePath);
测试用例
publicstaticvoidmain(String[]args){ try{ StringpdfFilePath="template/test.pdf"; Resourceresource=newClassPathResource(pdfFilePath); System.out.println(resource.getURI()+"--******path="); if(resource.isReadable()){ //每次都会打开一个新的流 InputStreamis=resource.getInputStream(); System.out.println("方法一"+is.available()); } InputStreaminputStream=Thread.currentThread().getContextClassLoader().getResourceAsStream(pdfFilePath); System.out.println("方法二"+inputStream.available()); }catch(IOExceptione){ e.printStackTrace(); } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。