您的当前位置:首页正文

JSONArray集合转list集合对象

2024-11-27 来源:个人技术集锦

 

 

请求接口转list<对象>

JSONObject obj = PostInterface.post(PostInterface.ServletName.activitiModel,"queryPlaceHolderList",new HashMap()).getJSONObject("SvcCont");
List<Placeholder> dataArr = JSON.parseArray(obj.getString("placeHolderList"),Placeholder.class);

转载于:https://www.cnblogs.com/320321ABab/p/10697124.html

显示全文