基于JSON路径列表获取JSON树Java

0lvr5msh  于 2023-01-06  发布在  Java
关注(0)|答案(1)|浏览(129)

我的意见如下:

List.of("customer.name", "customer.phone", "shop.address", "nr")

我必须得到JSON树层次结构,如下所示:

{ 
  customer: {
    name: "",
    phone: "",
  },
  shop: {
    address: ""
  },
  nr: ""
}

我正在使用Java和“org.json”、“com.jayway.jsonpath”JSON依赖项。
你有什么主意吗?谢谢!

lsmd5eda

lsmd5eda1#

你可以这样做:

import org.json.JSONObject;

List<String> input = List.of("customer.name", "customer.phone", "shop.address", "nr");

JSONObject root = new JSONObject();

for (String s : input) {
  // Split the string by the '.' character to get the keys
  String[] keys = s.split("\\.");

  JSONObject obj = root;
  for (int i = 0; i < keys.length; i++) {
    String key = keys[i];
    if (i < keys.length - 1) {
      if (!obj.has(key)) {
        obj.put(key, new JSONObject());
      }
      obj = obj.getJSONObject(key);
    } else {
      obj.put(key, "");
    }
  }
}

相关问题