JSONObject转成对象,JSONArray转成对象集合

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


如下为JSONObject到Java对象的转换,其中responseInfo.getData()为JSONObject类型
String JSONStr = JSON.toJSONString(responseInfo.getData());
BusLine busLine = JSON.parseObject(JSONStr, BusLine.class);

经常忘了记录一下

你可能感兴趣的:(JSON)