AutoBean复杂的JSON解析

时间:2015-07-24 16:27:01

标签: json gwt autobean

我有一个复杂的JSON字符串,我尝试使用AutoBean解析它。

JSON字符串如下所示:

 `{
 "status": "OK",
 "result": {
  "geometry": [
   [
    {
     "X": 268347.4,
     "Y": 6743983.1
    },
    {
     "X": 268341.1,
     "Y": 6743989.7
    }
   ],
   [
    {
     "X": 268378.15,
     "Y": 6743972.7
    },
    {
     "X": 268347.4,
     "Y": 6743983.1
    }
   ]
  ]
 }
}`

我创建了这个界面

public interface BrancheAutoBean {

  String getResult();
  GeometryModel getGeometryModel()
}

public interface GeometryModel {
  @PropertyName("geometry")
    List<Geometry> getGeometry();
}

public interface Geometry{

  @PropertyName("X")
   Double getX();

  @PropertyName("Y")
   Double getY();
}

我怎样才能让它发挥作用?以及如何将X和Y数组添加到geomtry中 我找到了一些例子,例如在解析bean时添加X和Y:

Geometry bean =AutoBeanCodex.decode(factory, GeometryModel.class, "{\"Geometry\": " + strResponse + "}").as();

但我的应用程序必须实现générique解析。 在普罗旺斯的.x。

1 个答案:

答案 0 :(得分:1)

您的BrancheAutoBean名称错误或缺少@PropertyName注释:结果应为状态 geometryModel 应该是结果

然后,您的GeometryModel getGeometry应该是List<List<Geometry>>。我不确定AutoBean是否支持此功能。