工具使用篇——springBoot读取静态文件打包后资源加载报错问题

springBoot打包静态文件报错问题

springBoot读取本地文件,比如txt,png等资源,发现打包之后总会有错误。

由于对shringBoot的marven打包机制没有深入的研究过,所以这里提供一个网上行得通的办法。

首先将你的资源丢到resources下面。
在读取数据的时候用下面的方法读:
:smile

Txtoperation txtoperation=new Txtoperation();//(你目前所作的类)
InputStream inputStream =txtoperation.getClass().getClassLoader().getResourceAsStream("gateinfo.txt");
BufferedReader br = new BufferedReader(new InputStreamReader(inputStream));

然后就ok了!

你可能感兴趣的:(工具使用)