欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java读取本地json文件及相应处理方法

程序员文章站 2024-02-25 08:15:28
如下所示: //读取json文件地址 /* string path = getclass().getclassloader().getresource("m...

如下所示:

//读取json文件地址
  /* string path = getclass().getclassloader().getresource("menu.json").tostring();
  path = path.replace("\\", "/");
  if (path.contains(":")) {
   path = path.replace("file:/", "");
  }*/
  classpathresource resource = new classpathresource("menu.json");
  file filepath = resource.getfile();
  jsonarray btnarray = null;

  //读取文件
  string input = fileutils.readfiletostring(filepath, "utf-8");
  //将读取的数据转换为jsonobject
  jsonobject jsonobject = jsonobject.fromobject(input);
  if (jsonobject != null) {
   //取出按钮权限的数据
   btnarray = jsonobject.getjsonarray("btnlist");
  }
  map<string, list<menuvo>> btnmap = new hashmap<>();
  iterator<object> num = btnarray.iterator();
  //遍历jsonarray,转换格式。按按钮集合按模块(name)放入map中
  while (num.hasnext()) {
   jsonobject btn = (jsonobject) num.next();
   btnmap.put((string) btn.get("name"), jsonarray.tolist((jsonarray) btn.get("children"), new menuvo(), new jsonconfig()));
  }

json文件

{
 "btnlist": [
 {
  "name": "用户管理",
  "children": [
  {
   "id": "yhgladd",
   "name": "添加"
  },
  {
   "id": "yhgledit",
   "name": "编辑"
  },
  {
   "id": "yhgldelete",
   "name": "暂停"
  },
  {
   "id": "yhglstart",
   "name": "启用"
  },
  {
   "id": "yhglsee",
   "name": "查看"
  }
  ]
 },
 {
  "name": "角色管理",
  "children": [
  {
   "id": "jsgladd",
   "name": "添加"
  },
  {
   "id": "jsgledit",
   "name": "编辑"
  },
  {
   "id": "jsglauth",
   "name": "授权"
  },
  {
   "id": "jsgldelete",
   "name": "删除"
  }
  ]
 }
 ]
}

以上这篇java读取本地json文件及相应处理方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。