springboot中打包发布后无法读取json文件问题浅析

springboot工程中读取json文件是一个非常常见的操作,在本地idea运行调试的时候读取json文件没有任何问题,但是打包发布后运行会报读取不到json文件的问题,解决方法如下

  • 要将json文件放到static目录下,如/static/config/
  • 读取json文件要用ClassPathResource和fastJson操作
    示例:
// 1
ClassPathResource resource = new ClassPathResource("static/config/Info.json");
// 2
JSONObject jsonObject = JSONObject.parseObject(FileUtil.readJson(resource ));
// 3
public static String readJson(ClassPathResource classPathResource) {
        String jsonStr = "";
        try {
            InputStream inputStream = classPathResource.getInputStream();
            Reader reader = new InputStreamReader(inputStream, "utf-8");
            int ch = 0;
            StringBuffer sb = new StringBuffer();
            while ((ch = reader.read()) != -1) {
                sb.append((char) ch);
            }
            reader.close();
            jsonStr = sb.toString();
            return jsonStr;
        } catch (IOException e) {
            e.printStackTrace();
            return null;
        }
    }
// 4
jsonObject .get("");

这样即可在打包运行时正确读取json文件,并转成json对象进行后续操作。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值