如何获取Json对象中的详细信息?

时间:2015-09-06 17:23:01

标签: java json parsing

我想知道如何从Json对象中获取更多细节。

这是Json文件:

{
    "Shapes": "Models",
    "Square": {
        "Length": 10
    },
    "Rectangle": {
        "Length": 10,
        "Width": 20
    },
    "Circle": {
        "Radius": 5
    },
    "Equilateral": {
        "Side": 10
    },
    "Scalene": {
        "Side1": 10,
        "Side2": 5,
        "Side3": 3
    },
    "Isosceles": {
        "Side1": 10,
        "Side2": 5,
        "Side3": 5
    }
}

我的代码如下:

public static void main(String[] args) {
    JSONParser parser = new JSONParser();
    try {
        Object obj = parser.parse(new FileReader("filepath"));
        JSONObject jsonObject = (JSONObject) obj;
        Object Square =  jsonObject.get("Square");
        System.out.println("Square: " + Square);
        Object Rect =  jsonObject.get("Rectangle");
        System.out.println("Rectangle: " + Rect);
    }

o / p就像

Square: {"Length":10}
Rectangle: {"Length":10,"Width":20}

我想获得更多细节,例如“长度/宽度/半径”

1 个答案:

答案 0 :(得分:0)

示例JSON中的Square,Rectangle等属性都是具有自己属性的JSONObjects。要访问这些JSON对象上的属性,请将 Object 转换为 JSONObject 实例以访问其方法。

    (JSONObject) Square = (JSONObject)jsonObject.get("Square");
    System.out.println("Square: " + Square);
    System.out.println("Square: Length=" + Square.get("Length"));

    JSONObject rect =  (JSONObject)jsonObject.get("Rectangle");
    System.out.println("Rectangle: " + rect);
    System.out.printf("Rectangle: Length=%s Width=%s%n",
      rect.get("Length"), rect.get("Width"));
顺便说一句,如果想要重复键(例如多个方块),则需要将数据表示为数组(或列表)与地图,并使形状类型成为形状细节的属性(长度,宽度等)。 )。

  [
   { "shape": "Square", 
     "Length": 6
   },
   { "shape": "Square", 
     "Length": 10
   }
  ]