如下为JSONArray到Java对象集合的转换,其中responseInfo.getData()为JSONArray类型
String JSONStr = JSON.toJSONString(responseInfo.getData());
List<BusLine> busLineList = JSON.parseObject(JSONStr,new TypeReference<List<BusLine>>(){});
如下为JSONObject到Java对象的转换,其中responseInfo.getData()为JSONObject类型
String JSONStr = JSON.toJSONString(responseInfo.getData());
BusLine busLine = JSON.parseObject(JSONStr, BusLine.class);