Json转List集合的方法

使用fastJson可以直接实现

String jsonStr = JSON.toJSONString(object);

List<VO> list = JSON.parseArray(jsonStr, VO.class);

list.forEach(
	item -> {
		System.out.println(item.name);
	}
)

你可能感兴趣的:(工作记录,json,list,restful)