Springboot 项目读取Resources目录下的文件(推荐)
程序员文章站
2022-07-01 10:54:31
需求描述:企业开发过程中,经常需要将一些静态文本数据放到resources目录下,项目启动时或者程序运行中,需要读取这些文件。 读取resources目录下文件的方法 /** * @descrip...
需求描述:企业开发过程中,经常需要将一些静态文本数据放到resources目录下,项目启动时或者程序运行中,需要读取这些文件。
读取resources目录下文件的方法
/** * @description: 读取resources 目录下的文件 * @author: ljj * @createdate: 2020/11/3 17:20 * @updateuser: * @updatedate: * @updatereakem * @param filepath * @return: java.lang.string **/ public static string getcontent(string filepath){ string res = ""; if(stringutils.isempty(filepath)){ log.info("文件路径不能为空"); return res; } try { resource resource = new classpathresource(filepath); bufferedreader br = new bufferedreader(new inputstreamreader(resource.getinputstream(),"utf-8")); stringbuffer sb = new stringbuffer(); string str = ""; while((str=br.readline())!=null) { sb.append(str); } res = sb.tostring(); } catch (exception e) { log.info("读取文件{}时发生异常",filepath); e.printstacktrace(); } return res; }
需要调用时:
string content = fileutils.getcontent("testdata/网元拓扑1.json");
注意:testdata 路径前面没有"/"
到此这篇关于springboot 项目读取resources目录下的文件的文章就介绍到这了,更多相关springboot读取resources文件内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: ethereum, P2P
下一篇: 三皇五帝分别是谁?揭秘关于三皇五帝的传说
推荐阅读
-
SpringBoot读取resources下的自定义yaml文件(配置只需两步)
-
Maven项目中读取src/main/resources目录下的配置文件的方法
-
javaweb(实用)-IDEA下resources目录下txt文件读取写入引发的项目后台路径问题总结
-
[JAVA IDEA]在使用maven项目中,无法读取resources文件夹中的配置文件的一种解决方案
-
springBoot项目打war包,部署到外部tomcat;解决打包后resources下的文件全部丢失
-
Maven项目中读取src/main/resources目录下的配置文件的方法
-
解决SpringBoot打成jar运行后无法读取resources里的文件问题
-
SpringBoot部署到Linux读取resources下的文件
-
springboot-项目获取resources下文件的方法
-
SpringBoot项目访问不到resources目录下的jsp文件