java parse json文件jsonobject

发布于 2025-01-17 15:53:11 字数 1255 浏览 0 评论 0原文

我的JSON文件具有这样的形式:

{
  "Region_1": {
    "Area_1": {
      "id": "id_1",
      "email": "email_1"
    },
    "Area_2": {
      "id": "id_2",
      "email": "email_2"
    }
  },
  "Region_2": {
      "Area_1": {
      "id": "id_1",
      "email": "email_1"
    },
    "Area_2": {
      "id": "id_2",
      "email": "email_2"
    }
  }
}

我需要使用JsonObject来解析此结构,我已经有代码可以解析此结构,但不仅可以获取region_2。 region_1获取。

JSONObject obj = new JSONObject(fileData);
    for (Map.Entry<String, Object> entry : obj.entrySet()) {
        String region = entry.getKey().toString();
        JSONObject areas = new JSONObject(entry.getValue().toString());

        System.out.println("region: " + region);

        List links = areas.entrySet().collect({ it ->
            String area = it.getKey().toString();

            System.out.println("area: " + area);

            JSONObject areaData = new JSONObject(it.getValue().toString());
            String code = areaData.getString("id");
            String email = areaData.getString("email");

            System.out.println("code: " + code.toString());
            System.out.println("email: " + email.toString());
       })
    } 

为什么只有第一个对象来自JSON文件?

I have json file with such form:

{
  "Region_1": {
    "Area_1": {
      "id": "id_1",
      "email": "email_1"
    },
    "Area_2": {
      "id": "id_2",
      "email": "email_2"
    }
  },
  "Region_2": {
      "Area_1": {
      "id": "id_1",
      "email": "email_1"
    },
    "Area_2": {
      "id": "id_2",
      "email": "email_2"
    }
  }
}

I need to parse this structure using JSONObject, I have already code which parse this but not get Region_2 only.
Region_1 getting.

JSONObject obj = new JSONObject(fileData);
    for (Map.Entry<String, Object> entry : obj.entrySet()) {
        String region = entry.getKey().toString();
        JSONObject areas = new JSONObject(entry.getValue().toString());

        System.out.println("region: " + region);

        List links = areas.entrySet().collect({ it ->
            String area = it.getKey().toString();

            System.out.println("area: " + area);

            JSONObject areaData = new JSONObject(it.getValue().toString());
            String code = areaData.getString("id");
            String email = areaData.getString("email");

            System.out.println("code: " + code.toString());
            System.out.println("email: " + email.toString());
       })
    } 

Why only first object takes from json file ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文