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对象进行后续操作。
|