records_JS = jsonObject.getJSONArray(rname);
if (records_JS!=null){
recordsList=new ArrayList();
Object[] methodsInfo = BeanUtils.getCacheSetterMethodInfo(beanClass);
for (int i=0;i<records_JS.length();i++){
JSONObject obj_JS = records_JS.getJSONObject(i);
recordsList.add(JSONUtils.JSONObject2Bean(obj_JS,beanClass,methodsInfo));
}
}
} catch (JSONException e) {
//LogHandler.error(this,e);