JAVA 将JSON转化为实体类List

时间:2024-03-08 15:53:02
List<CategoriesVO> categoriesVOList = JSON.parseArray(responseData.getData().toString(), CategoriesVO.class);
CategoriesVO categoriesVO=((JSONObject)JSONObject.toJSON(((List)responseData.getData()).get(0))).toJavaObject(CategoriesVO.class);

List<CategoriesVO> list = JSON.parseArray(jsonObject.getJSONArray("list").toString(),CategoriesVO.class);// JSONObject jsonObject