工作中,用到了地图,有个地图的json文件,通过前端调用文件中的json数据。把文件放到项目中,ruoyi框架放到ruoyi-system下,resources下面,不然打包后找不到文件位置。
然后定义个url,指定这个位置
private String filePath = "classpath:cjson/cj.json";
private JSONObject getJsonObject(String filePath) throws IOException{
// 创建资源对象
Resource resource = new ClassPathResource(filePath);
// 获取资源文件的输入流
InputStream inputStream = resource.getInputStream();
// 读取输入流中的数据
byte[] data = FileCopyUtils.copyToByteArray(inputStream);
// 将字节数组转换为字符串
String content = new String(data, StandardCharsets.UTF_8);
// 输出文件内容
return JSONObject.parse(content);
}
这样就可以把json后缀的文件里的内容,读取出来了,可以做自己业务。