标签:string new xxxxxx from color data 转化 service 方法
直接看步骤吧
1.一般我们会调用别人给的webservice获取一个字符串数据。如果为String data=“xxxxxxxxxx”; 这个data事实上就是样例EnterpriseInfoEntity 的多条记录
2. 把data转换为JSONArray
JSONArray arr =new JSONArray();
arr = JSONArray.fromObject(data);
3. 我们是调用JSONObject 的toBean方法。讲这条数据相应到我们写的entity 然后在调用保存方法。进行保存
for(Object obj : arr){
JSONObject jsonObject =JSONObject.fromObject(obj);
EnterpriseInfoEntity entInfo = (EnterpriseInfoEntity)JSONObject.toBean(jsonObject, EnterpriseInfoEntity.class);
}
标签:string new xxxxxx from color data 转化 service 方法
原文地址:http://www.cnblogs.com/jhcelue/p/7043447.html