筆記:Spring中獲取classpath下的文件資源

經過Spring工具類獲取classpath下的文件資源

一、資源文件不在jar中 java

File cfgFile = ResourceUtils.getFile("classpath:test.txt");
或者
org.springframework.core.io.Resource fileRource = new ClassPathResource("test.txt");
獲取文件:fileRource.getFile();
獲取文件流:fileRource.getInputStream();
二、資源文件在jar中
org.springframework.core.io.Resource fileRource = new ClassPathResource("test.txt");

獲取文件流:fileRource.getInputStream();
注:無論是文件系統中的類資源,仍是JAR中的類資源文件,均可以以流的形式讀取
參考:
陳雄華:《使用以下方式讀取JAR中的文件出錯》http://stamen.iteye.com/blog/1485531
http://blog.csdn.net/liu251/article/details/2899023
如何讀取JAR包中的資源文件(如XML、TXT等) :http://blog.csdn.net/liu251/article/details/4057140
spring

相關文章
相關標籤/搜索