前提:使用阿里巴巴的JSON包

String json = "";  //JSON字符串

 Map map = JSON.parseObject(json, Map.class);

 //遍历 Map  使用迭代器

Iterator it = map.keySet().iterator();

while(it.hashNext()){

 String values = map.get(it.next()).toString();

List<Object o> list = JSON.parseArray(values , Object.class);  //转成List数据

}

相关文章:

  • 2022-12-23
  • 2021-12-31
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-10
  • 2022-12-23
猜你喜欢
  • 2022-01-14
  • 2022-12-23
  • 2021-06-29
  • 2021-09-13
  • 2021-12-24
  • 2021-08-18
  • 2022-12-23
相关资源
相似解决方案