将JSON解析为数据结构

时间:2017-02-23 20:30:04

标签: java json parsing gson computer-science

{
  "nose": {
    "color": 1
  },
  "wing": {
    "span": 24.0,
    "weight": 3.2,
    "flex": 0.93,
    "flaps": false
  },
  "tail": {},
  "cabin": {},
  "physics": {
    "cruise_control": false
  },
  "turbines": {
    "speed": 1.0
  },
  "gear": {
    "speed": 82.1,
    "rpm": 5200
  }
}

我正在尝试将上面的JSON解析为数据结构。我最初使用的是Gson,但是大多数解决方案建议创建一个类结构来镜像我的Gson结构并使用fromJson(String,Class),但我不想这样做,因为JSON的结构可能会改变,我不会我不想每次都要格式化我的课程。

0 个答案:

没有答案