使用json-simple获取嵌套对象 - 父节点的通配符

时间:2015-06-22 17:16:51

标签: java json json-simple

我想要检索" name"值并将它们存储在Java中的JSON文件的Arraylist中。我正在使用JSON-simple库这是我" file.json"的一个例子:

{
  "111": {

    "customer": {

        "name": "John Do",
        "Height": 5.9,
        "City": "NewYork"
    }

  },
  "222":{

    "customer": {

        "name": "Sean Williams",
        "Height": 6,
        "City": "Los Angeles"
    }
  }
}

身份证号码" 111"和" 222"对我的程序来说并不重要,它们是随机生成的,因此我无法使用jObject.get(),因为值会不断变化。我尝试为父节点搜索通配符,然后转到子节点customer然后name,但还没有找到这样的东西。

到目前为止,这是我的代码:

import java.io.*;
import java.util.ArrayList;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;

public class npTest {

    public static void main(String[] args) throws IOException, ParseException {

        try {
            JSONParser jParser = new JSONParser();
            JSONObject jObject = (JSONObject) jParser.parse(new FileReader("file.json"));

//Notes

    } catch (FileNotFoundException e) {
        System.out.print("File not found!");
    }

}

}

注意:我尝试过的方法需要jObject.get("id")。另外我注意到我无法将JSONObject存储在另一个JSONObject中,例如:JSONObject parentObj = new JSONObject(jObject.get("111"));

2 个答案:

答案 0 :(得分:2)

您可以使用JSONObject方法遍历keySet()中的键。然后拿出你的"customer"并获取他们的名字。

JSONParser jParser = new JSONParser();
JSONObject jObject = (JSONObject) jParser.parse(new FileReader("c:\\file.json"));

for(Object key : jObject.keySet()) {
    JSONObject customerWrapper = (JSONObject)jObject.get(key);
    JSONObject customer = (JSONObject)customerWrapper.get("customer");
    System.out.println(customer.get("name"));
}

答案 1 :(得分:0)

JSONObject实现了Map接口。因此,您可以使用普通的Java语法查询所有映射键:

for (Object innnerO : jObject.values()){
  JSONObject customerO = (JSONObject)((JSONObject)innerO).get("customer");
}

注意:这是在没有编译器的情况下写的。所以我可能会有错误。