JSON转换相关

  对象转json

1. JSONObject jsonObject1 = (JSONObject)JSONObject.toJSON(iotDeviceOnline.getData());  //fastjson 对象转json

2.   net.sf.json.JSONObject jsonObject2 = net.sf.json.JSONObject.fromObject(iotDeviceProperties.getData());// 对象转json

      jsonObject转list集合

1. List<DeviceInfoWifi> deviceInfoWifis = JSONObject.parseArray(jsonObject2.toString(), DeviceInfoWifi.class);// json转list

上一篇:TS中定义泛型接口的两种方式


下一篇:ZooKeeper学习笔记二:API基本使用